Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 953 Bytes

HookAction.md

File metadata and controls

30 lines (21 loc) · 953 Bytes

HookAction

Properties

Name Type Description Notes
executable HookActionExecutableSpec
systemd HookActionSystemdSpec

Example

from flightctl.models.hook_action import HookAction

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

# convert the object into a dict
hook_action_dict = hook_action_instance.to_dict()
# create an instance of HookAction from a dict
hook_action_from_dict = HookAction.from_dict(hook_action_dict)

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