Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.92 KB

File metadata and controls

40 lines (31 loc) · 1.92 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]
width str Document Content Width property [optional]
height str Document Content Height property [optional]
deep_link_path str Path or Name of deep link [optional]
checksum str Document checksum, changes when document file changes [optional]
checksum_type ChecksumType [optional]
tags List[AddDocumentTag] List of document tags [optional]
metadata List[AddDocumentMetadata] List of document Metadata [optional]
attributes Dict[str, FulltextAttribute] [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]