Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

ObjectStorageSharedOwnerList

Properties

Name Type Description Notes
owners List[ObjectStorageSharedOwner] List of owners with shared object storage. [readonly]
next_last_key str Next pagination key. [readonly]

Example

from saturn_api.models.object_storage_shared_owner_list import ObjectStorageSharedOwnerList

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

# convert the object into a dict
object_storage_shared_owner_list_dict = object_storage_shared_owner_list_instance.to_dict()
# create an instance of ObjectStorageSharedOwnerList from a dict
object_storage_shared_owner_list_from_dict = ObjectStorageSharedOwnerList.from_dict(object_storage_shared_owner_list_dict)

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