Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.38 KB

File metadata and controls

38 lines (29 loc) · 1.38 KB

WorkflowSummaryResponse

List item - DB-only fields, no Temporal call per item.

Properties

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

Example

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)

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