The LoadCapacity type
| 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 |
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)