Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

DocumentFulltextResponse.md

File metadata and controls

29 lines (20 loc) · 1.08 KB

DocumentFulltextResponse

Properties

Name Type Description Notes
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]