Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

AddDocumentWorkflowDecisionsRequest.md

File metadata and controls

31 lines (22 loc) · 1.27 KB

AddDocumentWorkflowDecisionsRequest

Properties

Name Type Description Notes
step_id str Workflow Step Identifier [optional]
comments str Workflow decision comments [optional]
decision str

Example

from formkiq_client.models.add_document_workflow_decisions_request import AddDocumentWorkflowDecisionsRequest

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

# convert the object into a dict
add_document_workflow_decisions_request_dict = add_document_workflow_decisions_request_instance.to_dict()
# create an instance of AddDocumentWorkflowDecisionsRequest from a dict
add_document_workflow_decisions_request_from_dict = AddDocumentWorkflowDecisionsRequest.from_dict(add_document_workflow_decisions_request_dict)

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