Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.53 KB

DocumentSearch.md

File metadata and controls

36 lines (27 loc) · 1.53 KB

DocumentSearch

Document tag search criteria

Properties

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]

Example

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)

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