Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.59 KB

DocumentAction.md

File metadata and controls

40 lines (31 loc) · 1.59 KB

DocumentAction

Properties

Name Type Description Notes
status DocumentActionStatus [optional]
type DocumentActionType [optional]
queue_id str Queue Id [optional]
workflow_id str Workflow Id [optional]
workflow_step_id str Workflow Step Id [optional]
message str Action message information [optional]
user_id str User who requested the Action [optional]
inserted_date str Inserted Timestamp [optional]
start_date str Started Timestamp [optional]
completed_date str Completed Timestamp [optional]
parameters Dict[str, str] Action parameters [optional]
metadata Dict[str, str] Action metadata [optional]

Example

from formkiq_client.models.document_action import DocumentAction

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

# convert the object into a dict
document_action_dict = document_action_instance.to_dict()
# create an instance of DocumentAction from a dict
document_action_from_dict = DocumentAction.from_dict(document_action_dict)

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