Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 972 Bytes

File metadata and controls

29 lines (20 loc) · 972 Bytes

CommittedQuoteType

Properties

Name Type Description Notes
type CommittedQuoteEnum

Example

from fireblocks.models.committed_quote_type import CommittedQuoteType

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

# convert the object into a dict
committed_quote_type_dict = committed_quote_type_instance.to_dict()
# create an instance of CommittedQuoteType from a dict
committed_quote_type_from_dict = CommittedQuoteType.from_dict(committed_quote_type_dict)

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