Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.45 KB

File metadata and controls

36 lines (27 loc) · 1.45 KB

DocumentWorkflow

Properties

Name Type Description Notes
workflow_id str Workflow identifier [optional]
name str Workflow name [optional]
description str Workflow description [optional]
current_step_id str The current step workflow is on [optional]
action_count int Number of actions added for the current workflow step [optional]
completed_action_count int Number of completed actions for the current workflow step [optional]
status DocumentWorkflowStatus [optional]
inserted_date str Inserted Timestamp [optional]

Example

from formkiq_client.models.document_workflow import DocumentWorkflow

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

# convert the object into a dict
document_workflow_dict = document_workflow_instance.to_dict()
# create an instance of DocumentWorkflow from a dict
document_workflow_from_dict = DocumentWorkflow.from_dict(document_workflow_dict)

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