Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

DownloadUrl

Secure download URL for a purchased digital asset. The URL is time-limited and can be used to download the asset file.

Properties

Name Type Description Notes
url str Secure, time-limited URL that can be used to download the purchased digital asset.The URL expires after a predetermined period.

Example

from hlconnect_client.models.download_url import DownloadUrl

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

# convert the object into a dict
download_url_dict = download_url_instance.to_dict()
# create an instance of DownloadUrl from a dict
download_url_from_dict = DownloadUrl.from_dict(download_url_dict)

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