Secure download URL for a purchased digital asset. The URL is time-limited and can be used to download the asset file.
| 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. |
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)