Document full text search criteria
Name | Type | Description | Notes |
---|---|---|---|
page | int | Result page to return (starting at 1) | [optional] |
text | str | Full text search | [optional] |
tags | List[DocumentFulltextTag] | List of search tags | [optional] |
attributes | List[DocumentFulltextAttribute] | List of search attributes | [optional] |
from formkiq_client.models.document_fulltext_search import DocumentFulltextSearch
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentFulltextSearch from a JSON string
document_fulltext_search_instance = DocumentFulltextSearch.from_json(json)
# print the JSON string representation of the object
print(DocumentFulltextSearch.to_json())
# convert the object into a dict
document_fulltext_search_dict = document_fulltext_search_instance.to_dict()
# create an instance of DocumentFulltextSearch from a dict
document_fulltext_search_from_dict = DocumentFulltextSearch.from_dict(document_fulltext_search_dict)