Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

DocumentSearchMeta.md

File metadata and controls

33 lines (24 loc) · 1.25 KB

DocumentSearchMeta

Properties

Name Type Description Notes
folder str Searches for a folder [optional]
path str Searches for a Path of document [optional]
eq str Searches for strings that eq [optional]
index_type str Searches in an index [optional]
index_filter_begins_with str Returns index records that begins with a particular substring [optional]

Example

from formkiq_client.models.document_search_meta import DocumentSearchMeta

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

# convert the object into a dict
document_search_meta_dict = document_search_meta_instance.to_dict()
# create an instance of DocumentSearchMeta from a dict
document_search_meta_from_dict = DocumentSearchMeta.from_dict(document_search_meta_dict)

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