Name | Type | Description | Notes |
---|---|---|---|
path | str | Path or Name of document | [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 | [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 | List[AddDocumentAttribute] | List of document attributes | [optional] |
actions | List[AddAction] | List of Actions | [optional] |
documents | List[AddChildDocument] | List of child documents | [optional] |
from formkiq_client.models.update_document_request import UpdateDocumentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDocumentRequest from a JSON string
update_document_request_instance = UpdateDocumentRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateDocumentRequest.to_json())
# convert the object into a dict
update_document_request_dict = update_document_request_instance.to_dict()
# create an instance of UpdateDocumentRequest from a dict
update_document_request_from_dict = UpdateDocumentRequest.from_dict(update_document_request_dict)