| Name | Type | Description | Notes |
|---|---|---|---|
| via | AccessType | ||
| id | str | ||
| quote_asset_id | str | ||
| base_asset_id | str | ||
| base_amount | str | ||
| quote_amount | str | ||
| price_impact | float | [optional] | |
| quote_min_amount | str | [optional] | |
| execution_steps | List[QuoteExecutionStep] | [optional] | |
| general_fees | List[Fee] | [optional] | |
| side | Side | ||
| expires_at | str | The expiration time of the quote in ISO format. |
from fireblocks.models.quote_properties_details import QuotePropertiesDetails
# TODO update the JSON string below
json = "{}"
# create an instance of QuotePropertiesDetails from a JSON string
quote_properties_details_instance = QuotePropertiesDetails.from_json(json)
# print the JSON string representation of the object
print(QuotePropertiesDetails.to_json())
# convert the object into a dict
quote_properties_details_dict = quote_properties_details_instance.to_dict()
# create an instance of QuotePropertiesDetails from a dict
quote_properties_details_from_dict = QuotePropertiesDetails.from_dict(quote_properties_details_dict)