Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.56 KB

File metadata and controls

38 lines (29 loc) · 1.56 KB

ExecutionResponseDetails

Properties

Name Type Description Notes
type QuoteTypeEnum
side Side
base_amount str Amount to convert
base_asset_id str Source asset identifier
base_asset_rail TransferRail [optional]
quote_asset_id str Target asset identifier
quote_asset_rail TransferRail [optional]
quote_id str Quote ID for quote orders
quote_amount str Quote amount for quote orders
re_quote ReQuoteDetailsReQuote [optional]

Example

from fireblocks.models.execution_response_details import ExecutionResponseDetails

# TODO update the JSON string below
json = "{}"
# create an instance of ExecutionResponseDetails from a JSON string
execution_response_details_instance = ExecutionResponseDetails.from_json(json)
# print the JSON string representation of the object
print(ExecutionResponseDetails.to_json())

# convert the object into a dict
execution_response_details_dict = execution_response_details_instance.to_dict()
# create an instance of ExecutionResponseDetails from a dict
execution_response_details_from_dict = ExecutionResponseDetails.from_dict(execution_response_details_dict)

[Back to Model list] [Back to API list] [Back to README]