Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1020 Bytes

File metadata and controls

32 lines (23 loc) · 1020 Bytes

SimpleLoad

Properties

Name Type Description Notes
load_id str [optional]
is_request bool [optional]
is_fuzzy_visit bool [optional]
type_name str The typeName of the object [default to 'SimpleLoad']

Example

from touroptimizer_py_client.models.simple_load import SimpleLoad

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

# convert the object into a dict
simple_load_dict = simple_load_instance.to_dict()
# create an instance of SimpleLoad from a dict
simple_load_from_dict = SimpleLoad.from_dict(simple_load_dict)

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