EditGitHookOption options when modifying one Git hook
| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | [optional] |
from openapi_client.models.edit_git_hook_option import EditGitHookOption
# TODO update the JSON string below
json = "{}"
# create an instance of EditGitHookOption from a JSON string
edit_git_hook_option_instance = EditGitHookOption.from_json(json)
# print the JSON string representation of the object
print(EditGitHookOption.to_json())
# convert the object into a dict
edit_git_hook_option_dict = edit_git_hook_option_instance.to_dict()
# create an instance of EditGitHookOption from a dict
edit_git_hook_option_from_dict = EditGitHookOption.from_dict(edit_git_hook_option_dict)