Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

DocumentFulltextSearch.md

File metadata and controls

33 lines (24 loc) · 1.32 KB

DocumentFulltextSearch

Document full text search criteria

Properties

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]

Example

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)

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