Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

MarketRequoteRequestDetails

Properties

Name Type Description Notes
type MarketRequoteTypeEnum

Example

from fireblocks.models.market_requote_request_details import MarketRequoteRequestDetails

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

# convert the object into a dict
market_requote_request_details_dict = market_requote_request_details_instance.to_dict()
# create an instance of MarketRequoteRequestDetails from a dict
market_requote_request_details_from_dict = MarketRequoteRequestDetails.from_dict(market_requote_request_details_dict)

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