| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| via | AccessType | ||
| side | Side | ||
| base_amount | str | ||
| quote_amount | str | [optional] | |
| base_asset_id | str | ||
| quote_asset_id | str | ||
| status | OrderStatus | ||
| destination | AccountReference | ||
| source | SettlementSourceAccount | [optional] | |
| created_at | datetime |
from fireblocks.models.order_summary import OrderSummary
# TODO update the JSON string below
json = "{}"
# create an instance of OrderSummary from a JSON string
order_summary_instance = OrderSummary.from_json(json)
# print the JSON string representation of the object
print(OrderSummary.to_json())
# convert the object into a dict
order_summary_dict = order_summary_instance.to_dict()
# create an instance of OrderSummary from a dict
order_summary_from_dict = OrderSummary.from_dict(order_summary_dict)