Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

DocumentFulltextTag.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

DocumentFulltextTag

Properties

Name Type Description Notes
eq str Searches for strings that eq [optional]
eq_or List[str] Searches for ANY strings that eq [optional]
key str Tag key to search

Example

from formkiq_client.models.document_fulltext_tag import DocumentFulltextTag

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

# convert the object into a dict
document_fulltext_tag_dict = document_fulltext_tag_instance.to_dict()
# create an instance of DocumentFulltextTag from a dict
document_fulltext_tag_from_dict = DocumentFulltextTag.from_dict(document_fulltext_tag_dict)

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