Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 951 Bytes

File metadata and controls

29 lines (20 loc) · 951 Bytes

MarketTypeDetails

Properties

Name Type Description Notes
type MarketTypeEnum

Example

from fireblocks.models.market_type_details import MarketTypeDetails

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

# convert the object into a dict
market_type_details_dict = market_type_details_instance.to_dict()
# create an instance of MarketTypeDetails from a dict
market_type_details_from_dict = MarketTypeDetails.from_dict(market_type_details_dict)

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