View on GitHub

lakeFS

lakeFS - Data version control for your data lake | Git for data

HookRun

Properties

Name Type Description Notes
hook_run_id str    
action str    
hook_id str    
start_time datetime    
end_time datetime   [optional]
status str    

Example

from lakefs_sdk.models.hook_run import HookRun

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

# convert the object into a dict
hook_run_dict = hook_run_instance.to_dict()
# create an instance of HookRun from a dict
hook_run_form_dict = hook_run.from_dict(hook_run_dict)

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