Skip to content

Latest commit

History

History
30 lines (21 loc) · 948 Bytes

File metadata and controls

30 lines (21 loc) · 948 Bytes

MetadataOrders

Properties

NameTypeDescriptionNotes
ordersList[Order][optional]
totalint[optional]

Example

fromklimapi_python.models.metadata_ordersimportMetadataOrders# TODO update the JSON string belowjson="{}"# create an instance of MetadataOrders from a JSON stringmetadata_orders_instance=MetadataOrders.from_json(json)
# print the JSON string representation of the objectprint(MetadataOrders.to_json())
# convert the object into a dictmetadata_orders_dict=metadata_orders_instance.to_dict()
# create an instance of MetadataOrders from a dictmetadata_orders_from_dict=MetadataOrders.from_dict(metadata_orders_dict)

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