| 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] |
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)