Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

QuoteExecutionTypeDetails

Properties

Name Type Description Notes
type QuoteTypeEnum
quote_id str Quote ID for quote orders
quote_amount str Quote amount for quote orders

Example

from fireblocks.models.quote_execution_type_details import QuoteExecutionTypeDetails

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

# convert the object into a dict
quote_execution_type_details_dict = quote_execution_type_details_instance.to_dict()
# create an instance of QuoteExecutionTypeDetails from a dict
quote_execution_type_details_from_dict = QuoteExecutionTypeDetails.from_dict(quote_execution_type_details_dict)

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