Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.33 KB

File metadata and controls

41 lines (32 loc) · 1.33 KB

Quote

Properties

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.
type IndicativeQuoteEnum

Example

from fireblocks.models.quote import Quote

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

# convert the object into a dict
quote_dict = quote_instance.to_dict()
# create an instance of Quote from a dict
quote_from_dict = Quote.from_dict(quote_dict)

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