Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

ObjectStoragePresignedDownload

Properties

Name Type Description Notes
file_path str File path in object storage. [readonly]
size int Size of the file. [readonly]
updated_at datetime File updated timestamp. [readonly]
url str Presigned download URL for the file. [readonly]

Example

from saturn_api.models.object_storage_presigned_download import ObjectStoragePresignedDownload

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

# convert the object into a dict
object_storage_presigned_download_dict = object_storage_presigned_download_instance.to_dict()
# create an instance of ObjectStoragePresignedDownload from a dict
object_storage_presigned_download_from_dict = ObjectStoragePresignedDownload.from_dict(object_storage_presigned_download_dict)

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