HookRunList
Properties
| Name |
Type |
Description |
Notes |
| pagination |
Pagination |
|
|
| results |
List[HookRun] |
|
|
Example
from lakefs_enterprise_sdk.models.hook_run_list import HookRunList
# TODO update the JSON string below
json = "{}"
# create an instance of HookRunList from a JSON string
hook_run_list_instance = HookRunList.from_json(json)
# print the JSON string representation of the object
print HookRunList.to_json()
# convert the object into a dict
hook_run_list_dict = hook_run_list_instance.to_dict()
# create an instance of HookRunList from a dict
hook_run_list_form_dict = hook_run_list.from_dict(hook_run_list_dict)