Document tag search criteria
Name | Type | Description | Notes |
---|---|---|---|
text | str | Full text search | [optional] |
meta | DocumentSearchMeta | [optional] | |
attribute | DocumentSearchAttribute | [optional] | |
attributes | List[DocumentSearchAttribute] | List of Composite Key attributes to filter search results on | [optional] |
tag | DocumentSearchTag | [optional] | |
tags | List[DocumentSearchTags] | List of Composite Key tags to filter search results on | [optional] |
document_ids | List[str] | List of DocumentIds to filter search results on | [optional] |
from formkiq_client.models.document_search import DocumentSearch
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentSearch from a JSON string
document_search_instance = DocumentSearch.from_json(json)
# print the JSON string representation of the object
print(DocumentSearch.to_json())
# convert the object into a dict
document_search_dict = document_search_instance.to_dict()
# create an instance of DocumentSearch from a dict
document_search_from_dict = DocumentSearch.from_dict(document_search_dict)