Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.53 KB

AddDocumentFulltextRequest.md

File metadata and controls

35 lines (26 loc) · 1.53 KB

AddDocumentFulltextRequest

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.add_document_fulltext_request import AddDocumentFulltextRequest

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

# convert the object into a dict
add_document_fulltext_request_dict = add_document_fulltext_request_instance.to_dict()
# create an instance of AddDocumentFulltextRequest from a dict
add_document_fulltext_request_from_dict = AddDocumentFulltextRequest.from_dict(add_document_fulltext_request_dict)

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