Name | Type | Description | Notes |
---|---|---|---|
executable | HookActionExecutableSpec |
from flightctl.models.hook_action_one_of import HookActionOneOf
# TODO update the JSON string below
json = "{}"
# create an instance of HookActionOneOf from a JSON string
hook_action_one_of_instance = HookActionOneOf.from_json(json)
# print the JSON string representation of the object
print(HookActionOneOf.to_json())
# convert the object into a dict
hook_action_one_of_dict = hook_action_one_of_instance.to_dict()
# create an instance of HookActionOneOf from a dict
hook_action_one_of_from_dict = HookActionOneOf.from_dict(hook_action_one_of_dict)