Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

PendingOrdersCalculated

Properties

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

Example

from klimapi_python.models.pending_orders_calculated import PendingOrdersCalculated

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

# convert the object into a dict
pending_orders_calculated_dict = pending_orders_calculated_instance.to_dict()
# create an instance of PendingOrdersCalculated from a dict
pending_orders_calculated_from_dict = PendingOrdersCalculated.from_dict(pending_orders_calculated_dict)

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