Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 987 Bytes

File metadata and controls

29 lines (20 loc) · 987 Bytes

IndicativeQuoteType

Properties

Name Type Description Notes
type IndicativeQuoteEnum

Example

from fireblocks.models.indicative_quote_type import IndicativeQuoteType

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

# convert the object into a dict
indicative_quote_type_dict = indicative_quote_type_instance.to_dict()
# create an instance of IndicativeQuoteType from a dict
indicative_quote_type_from_dict = IndicativeQuoteType.from_dict(indicative_quote_type_dict)

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