Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1013 Bytes

WorkflowDocument.md

File metadata and controls

30 lines (21 loc) · 1013 Bytes

WorkflowDocument

Properties

Name Type Description Notes
workflow WorkflowSummary [optional]
document Document [optional]

Example

from formkiq_client.models.workflow_document import WorkflowDocument

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

# convert the object into a dict
workflow_document_dict = workflow_document_instance.to_dict()
# create an instance of WorkflowDocument from a dict
workflow_document_from_dict = WorkflowDocument.from_dict(workflow_document_dict)

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