Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

DocumentFulltextAttribute.md

File metadata and controls

31 lines (22 loc) · 1.24 KB

DocumentFulltextAttribute

Properties

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

Example

from formkiq_client.models.document_fulltext_attribute import DocumentFulltextAttribute

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

# convert the object into a dict
document_fulltext_attribute_dict = document_fulltext_attribute_instance.to_dict()
# create an instance of DocumentFulltextAttribute from a dict
document_fulltext_attribute_from_dict = DocumentFulltextAttribute.from_dict(document_fulltext_attribute_dict)

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