Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.08 KB

File metadata and controls

34 lines (25 loc) · 1.08 KB

ILoadCapacity

The LoadCapacity type

Properties

Name Type Description Notes
maximal_individual_load_capacity float [optional]
current_load float [optional]
load_pickup_time int [optional]
id str [optional]
type_name str

Example

from touroptimizer_py_client.models.i_load_capacity import ILoadCapacity

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

# convert the object into a dict
i_load_capacity_dict = i_load_capacity_instance.to_dict()
# create an instance of ILoadCapacity from a dict
i_load_capacity_from_dict = ILoadCapacity.from_dict(i_load_capacity_dict)

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