Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.39 KB

File metadata and controls

40 lines (31 loc) · 1.39 KB

WorkflowRunResponse

Workflow run response.

Properties

Name Type Description Notes
id UUID
workflow_definition_id UUID
user_id UUID
runner_type WorkflowRunnerType
status WorkflowRunStatus
started_at datetime
completed_at datetime
run_snapshot WorkflowRunSnapshot
error str
created_at datetime
updated_at datetime

Example

from ksapi.models.workflow_run_response import WorkflowRunResponse

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

# convert the object into a dict
workflow_run_response_dict = workflow_run_response_instance.to_dict()
# create an instance of WorkflowRunResponse from a dict
workflow_run_response_from_dict = WorkflowRunResponse.from_dict(workflow_run_response_dict)

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