Name | Type | Description | Notes |
---|---|---|---|
document_id | str | optional Document Identifier (Version 4 UUID), if skipped one will be assigned | [optional] |
path | str | Path or Name of document | [optional] |
checksum_type | ChecksumType | [optional] | |
checksum | str | The checksum value to validate the file against | [optional] |
deep_link_path | str | Path or Name of deep link | [optional] |
content_type | str | Document media type | [optional] |
is_base64 | bool | Is the content Base64-encoded? | [optional] |
content | str | Document content | |
tags | List[AddDocumentTag] | List of document tags | [optional] |
metadata | List[AddDocumentMetadata] | List of document Metadata | [optional] |
actions | List[AddAction] | List of Actions | [optional] |
attributes | List[AddDocumentAttribute] | List of Attributes to add to document | [optional] |
documents | List[AddChildDocument] | List of child documents | [optional] |
from formkiq_client.models.add_document_request import AddDocumentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddDocumentRequest from a JSON string
add_document_request_instance = AddDocumentRequest.from_json(json)
# print the JSON string representation of the object
print(AddDocumentRequest.to_json())
# convert the object into a dict
add_document_request_dict = add_document_request_instance.to_dict()
# create an instance of AddDocumentRequest from a dict
add_document_request_from_dict = AddDocumentRequest.from_dict(add_document_request_dict)