List item - DB-only fields, no Temporal call per item.
| Name | Type | Description | Notes |
|---|---|---|---|
| workflow_id | str | ||
| document_id | UUID | ||
| document_version_id | UUID | ||
| status | PipelineStatus | ||
| last_activity | str | [optional] | |
| error | str | [optional] | |
| last_run_timestamp | datetime | ||
| last_state_update_timestamp | datetime | [optional] | |
| created_at | datetime |
from ksapi.models.workflow_summary_response import WorkflowSummaryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowSummaryResponse from a JSON string
workflow_summary_response_instance = WorkflowSummaryResponse.from_json(json)
# print the JSON string representation of the object
print(WorkflowSummaryResponse.to_json())
# convert the object into a dict
workflow_summary_response_dict = workflow_summary_response_instance.to_dict()
# create an instance of WorkflowSummaryResponse from a dict
workflow_summary_response_from_dict = WorkflowSummaryResponse.from_dict(workflow_summary_response_dict)