Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

ListActionRunResponse

ListActionRunResponse return a list of ActionRun

Properties

Name Type Description Notes
total_count int [optional]
workflow_runs List[ActionRun] [optional]

Example

from openapi_client.models.list_action_run_response import ListActionRunResponse

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

# convert the object into a dict
list_action_run_response_dict = list_action_run_response_instance.to_dict()
# create an instance of ListActionRunResponse from a dict
list_action_run_response_from_dict = ListActionRunResponse.from_dict(list_action_run_response_dict)

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