Order execution details
| Name | Type | Description | Notes |
|---|---|---|---|
| type | QuoteTypeEnum | ||
| side | Side | ||
| base_amount | str | Amount in baseAssetId. BUY = base amount to receive; SELL = base amount to sell. | |
| base_asset_id | str | The asset you receive on BUY / give on SELL. | |
| base_asset_rail | TransferRail | [optional] | |
| quote_asset_id | str | Counter asset used to pay/receive | |
| quote_asset_rail | TransferRail | [optional] | |
| quote_id | str | Quote ID for quote orders | |
| re_quote | ReQuoteDetailsReQuote | [optional] |
from fireblocks.models.execution_request_details import ExecutionRequestDetails
# TODO update the JSON string below
json = "{}"
# create an instance of ExecutionRequestDetails from a JSON string
execution_request_details_instance = ExecutionRequestDetails.from_json(json)
# print the JSON string representation of the object
print(ExecutionRequestDetails.to_json())
# convert the object into a dict
execution_request_details_dict = execution_request_details_instance.to_dict()
# create an instance of ExecutionRequestDetails from a dict
execution_request_details_from_dict = ExecutionRequestDetails.from_dict(execution_request_details_dict)