Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 962 Bytes

File metadata and controls

32 lines (23 loc) · 962 Bytes

INodeDepot

The NodeDepot type

Properties

Name Type Description Notes
items List[ILoad] [optional]
depot_id str [optional]
type_name str

Example

from touroptimizer_py_client.models.i_node_depot import INodeDepot

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

# convert the object into a dict
i_node_depot_dict = i_node_depot_instance.to_dict()
# create an instance of INodeDepot from a dict
i_node_depot_from_dict = INodeDepot.from_dict(i_node_depot_dict)

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