Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

File metadata and controls

29 lines (20 loc) · 941 Bytes

ReQuoteDetails

Properties

Name Type Description Notes
re_quote ReQuoteDetailsReQuote [optional]

Example

from fireblocks.models.re_quote_details import ReQuoteDetails

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

# convert the object into a dict
re_quote_details_dict = re_quote_details_instance.to_dict()
# create an instance of ReQuoteDetails from a dict
re_quote_details_from_dict = ReQuoteDetails.from_dict(re_quote_details_dict)

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