Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 860 Bytes

File metadata and controls

30 lines (21 loc) · 860 Bytes

HookType

The HookType that can contain different Hooks

Properties

Name Type Description Notes
type_name str

Example

from touroptimizer_py_client.models.hook_type import HookType

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

# convert the object into a dict
hook_type_dict = hook_type_instance.to_dict()
# create an instance of HookType from a dict
hook_type_from_dict = HookType.from_dict(hook_type_dict)

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