Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

DocumentSearchRequest.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

DocumentSearchRequest

Document search tag criteria

Properties

Name Type Description Notes
query DocumentSearch
response_fields SearchResponseFields [optional]

Example

from formkiq_client.models.document_search_request import DocumentSearchRequest

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

# convert the object into a dict
document_search_request_dict = document_search_request_instance.to_dict()
# create an instance of DocumentSearchRequest from a dict
document_search_request_from_dict = DocumentSearchRequest.from_dict(document_search_request_dict)

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