Workflow run response.
| 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 |
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)