Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.36 KB

File metadata and controls

34 lines (25 loc) · 1.36 KB

ExecutionResponseBaseDetails

Properties

Name Type Description Notes
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]

Example

from fireblocks.models.execution_response_base_details import ExecutionResponseBaseDetails

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

# convert the object into a dict
execution_response_base_details_dict = execution_response_base_details_instance.to_dict()
# create an instance of ExecutionResponseBaseDetails from a dict
execution_response_base_details_from_dict = ExecutionResponseBaseDetails.from_dict(execution_response_base_details_dict)

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