github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/ActionRun.md (about) 1 # ActionRun 2 3 4 ## Properties 5 6 Name | Type | Description | Notes 7 ------------ | ------------- | ------------- | ------------- 8 **run_id** | **str** | | 9 **branch** | **str** | | 10 **start_time** | **datetime** | | 11 **end_time** | **datetime** | | [optional] 12 **event_type** | **str** | | 13 **status** | **str** | | 14 **commit_id** | **str** | | 15 16 ## Example 17 18 ```python 19 from lakefs_sdk.models.action_run import ActionRun 20 21 # TODO update the JSON string below 22 json = "{}" 23 # create an instance of ActionRun from a JSON string 24 action_run_instance = ActionRun.from_json(json) 25 # print the JSON string representation of the object 26 print ActionRun.to_json() 27 28 # convert the object into a dict 29 action_run_dict = action_run_instance.to_dict() 30 # create an instance of ActionRun from a dict 31 action_run_form_dict = action_run.from_dict(action_run_dict) 32 ``` 33 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 34 35