Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 920 Bytes

File metadata and controls

29 lines (20 loc) · 920 Bytes

PendingOrders

Properties

Name Type Description Notes
pending_orders List[PendingOrder] [optional]

Example

from klimapi_python.models.pending_orders import PendingOrders

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

# convert the object into a dict
pending_orders_dict = pending_orders_instance.to_dict()
# create an instance of PendingOrders from a dict
pending_orders_from_dict = PendingOrders.from_dict(pending_orders_dict)

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