Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

ActionTaskResponse

ActionTaskResponse returns a ActionTask

Properties

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

Example

from openapi_client.models.action_task_response import ActionTaskResponse

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

# convert the object into a dict
action_task_response_dict = action_task_response_instance.to_dict()
# create an instance of ActionTaskResponse from a dict
action_task_response_from_dict = ActionTaskResponse.from_dict(action_task_response_dict)

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