Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

GetWorkflowQueueDocumentsResponse.md

File metadata and controls

30 lines (21 loc) · 1.26 KB

GetWorkflowQueueDocumentsResponse

Properties

Name Type Description Notes
next str Next page of results token [optional]
documents List[WorkflowDocument] List of search result documents [optional]

Example

from formkiq_client.models.get_workflow_queue_documents_response import GetWorkflowQueueDocumentsResponse

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

# convert the object into a dict
get_workflow_queue_documents_response_dict = get_workflow_queue_documents_response_instance.to_dict()
# create an instance of GetWorkflowQueueDocumentsResponse from a dict
get_workflow_queue_documents_response_from_dict = GetWorkflowQueueDocumentsResponse.from_dict(get_workflow_queue_documents_response_dict)

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