Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

File metadata and controls

30 lines (21 loc) · 1.33 KB

DocumentFulltextResponse

Properties

Name Type Description Notes
total_count int Total number of documents that matched the search query. When the number of matches exceeds 10,000, this value will be reported as 10,000+ unless the search request explicitly enables exact total hit tracking. [optional]
documents List[FulltextSearchItem] List of search result documents [optional]

Example

from formkiq_client.models.document_fulltext_response import DocumentFulltextResponse

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

# convert the object into a dict
document_fulltext_response_dict = document_fulltext_response_instance.to_dict()
# create an instance of DocumentFulltextResponse from a dict
document_fulltext_response_from_dict = DocumentFulltextResponse.from_dict(document_fulltext_response_dict)

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