Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ResourceType

The polymorphic resource definition used in the optimization input. Currently supports capacity-based resources that carry working hours, location, and optional depot/load capacity configuration.

Properties

Name Type Description Notes
type_name str

Example

from touroptimizer_py_client.models.resource_type import ResourceType

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

# convert the object into a dict
resource_type_dict = resource_type_instance.to_dict()
# create an instance of ResourceType from a dict
resource_type_from_dict = ResourceType.from_dict(resource_type_dict)

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