Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 919 Bytes

File metadata and controls

30 lines (21 loc) · 919 Bytes

ExchangeOrder

Properties

Name Type Description Notes
exchange_id str [optional]
exchange_idx int [optional]

Example

from cyperf.models.exchange_order import ExchangeOrder

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

# convert the object into a dict
exchange_order_dict = exchange_order_instance.to_dict()
# create an instance of ExchangeOrder from a dict
exchange_order_from_dict = ExchangeOrder.from_dict(exchange_order_dict)

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