Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

DocumentSearchTags.md

File metadata and controls

32 lines (23 loc) · 1.14 KB

DocumentSearchTags

Properties

Name Type Description Notes
eq str Searches for strings that eq [optional]
begins_with str Searches for strings that begin with [optional]
range DocumentSearchRange [optional]
key str Tag key to search

Example

from formkiq_client.models.document_search_tags import DocumentSearchTags

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

# convert the object into a dict
document_search_tags_dict = document_search_tags_instance.to_dict()
# create an instance of DocumentSearchTags from a dict
document_search_tags_from_dict = DocumentSearchTags.from_dict(document_search_tags_dict)

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