Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

ObjectStorageList

Properties

Name Type Description Notes
dirs List[ObjectStorageDirDetails] List of directories. [readonly]
files List[ObjectStorageFileDetails] List of files. [readonly]
next_last_key str Next pagination key. [readonly]

Example

from saturn_api.models.object_storage_list import ObjectStorageList

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

# convert the object into a dict
object_storage_list_dict = object_storage_list_instance.to_dict()
# create an instance of ObjectStorageList from a dict
object_storage_list_from_dict = ObjectStorageList.from_dict(object_storage_list_dict)

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