Skip to content

DocumentArtifacts

Properties

Name Type Description Notes
document_meta_json DocumentArtifactsItem [optional]
document_pdf DocumentArtifactsItem [optional]
document_json DocumentArtifactsItem [optional]
document_glm_json DocumentArtifactsItem [optional]
document_md DocumentArtifactsItem [optional]
page_pdfs List[DocumentArtifactsPageItem] [optional] [default to []]
page_images List[DocumentArtifactsPageItem] [optional] [default to []]

Example

from deepsearch.cps.apis.public_v2.models.document_artifacts import DocumentArtifacts

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

# convert the object into a dict
document_artifacts_dict = document_artifacts_instance.to_dict()
# create an instance of DocumentArtifacts from a dict
document_artifacts_form_dict = document_artifacts.from_dict(document_artifacts_dict)
[Back to Model list] [Back to API list] [Back to README]