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.
| Name | Type | Description | Notes |
|---|---|---|---|
| type_name | str |
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)