Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

DocumentDownloadResponse

A short-lived, audited download link for a document-version artifact.

Properties

Name Type Description Notes
url str
expires_in int
document_id UUID
version_id UUID
artifact DownloadArtifact

Example

from ksapi.models.document_download_response import DocumentDownloadResponse

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

# convert the object into a dict
document_download_response_dict = document_download_response_instance.to_dict()
# create an instance of DocumentDownloadResponse from a dict
document_download_response_from_dict = DocumentDownloadResponse.from_dict(document_download_response_dict)

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