Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

ObjectStorageFileDetails

Properties

Name Type Description Notes
file_path str File path in object storage. [readonly]
size int Size of the file. [readonly]
created_at datetime Creation timestamp. [readonly]
updated_at datetime Update timestamp. [readonly]

Example

from saturn_api.models.object_storage_file_details import ObjectStorageFileDetails

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

# convert the object into a dict
object_storage_file_details_dict = object_storage_file_details_instance.to_dict()
# create an instance of ObjectStorageFileDetails from a dict
object_storage_file_details_from_dict = ObjectStorageFileDetails.from_dict(object_storage_file_details_dict)

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