The HookType that can contain different Hooks
| Name | Type | Description | Notes |
|---|---|---|---|
| type_name | str |
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)