Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

SimpleLoadCapacity

Properties

Name Type Description Notes
load_capacity_id str [optional]
max_capacity_value int The maximum individual load capacity of this depot entry. [optional]
type_name str The typeName of the object [default to 'SimpleLoadCapacity']

Example

from touroptimizer_py_client.models.simple_load_capacity import SimpleLoadCapacity

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

# convert the object into a dict
simple_load_capacity_dict = simple_load_capacity_instance.to_dict()
# create an instance of SimpleLoadCapacity from a dict
simple_load_capacity_from_dict = SimpleLoadCapacity.from_dict(simple_load_capacity_dict)

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