Name | Type | Description | Notes |
---|---|---|---|
eq | DocumentFulltextAttributeEq | [optional] | |
eq_or | List[DocumentFulltextAttributeEq] | Searches for ANY strings that eq | [optional] |
key | str | Tag key to search |
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)