Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.81 KB

File metadata and controls

41 lines (32 loc) · 1.81 KB

AddChildDocument

List of related documents

Properties

Name Type Description Notes
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]
content_type str Document Content-Type [optional]
checksum_type ChecksumType [optional]
checksum str The checksum value to validate the file against [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]
attributes List[AddDocumentAttribute] List of Attributes to add to document [optional]

Example

from formkiq_client.models.add_child_document import AddChildDocument

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

# convert the object into a dict
add_child_document_dict = add_child_document_instance.to_dict()
# create an instance of AddChildDocument from a dict
add_child_document_from_dict = AddChildDocument.from_dict(add_child_document_dict)

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