Document search tag criteria
Name | Type | Description | Notes |
---|---|---|---|
query | DocumentSearch | ||
response_fields | SearchResponseFields | [optional] |
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)