Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.53 KB

SetDocumentFulltextRequest.md

File metadata and controls

35 lines (26 loc) · 1.53 KB

SetDocumentFulltextRequest

Properties

Name Type Description Notes
content_type str Document Content-Type [optional]
content str Document content [optional]
content_urls List[str] URL(s) which contain document content [optional]
path str Path or Name of document [optional]
deep_link_path str Path or Name of deep link [optional]
tags List[AddDocumentTag] List of document tags [optional]
metadata List[AddDocumentMetadata] List of document Metadata [optional]

Example

from formkiq_client.models.set_document_fulltext_request import SetDocumentFulltextRequest

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

# convert the object into a dict
set_document_fulltext_request_dict = set_document_fulltext_request_instance.to_dict()
# create an instance of SetDocumentFulltextRequest from a dict
set_document_fulltext_request_from_dict = SetDocumentFulltextRequest.from_dict(set_document_fulltext_request_dict)

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