The NodeDepot type
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[ILoad] | [optional] | |
| depot_id | str | [optional] | |
| type_name | str |
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)