Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

ObjectStorageSharedOwner

Properties

Name Type Description Notes
id str ID of the owner. [readonly]
name str Name of the owner. [readonly]
count int Count of files shared by the owner. [readonly]

Example

from saturn_api.models.object_storage_shared_owner import ObjectStorageSharedOwner

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

# convert the object into a dict
object_storage_shared_owner_dict = object_storage_shared_owner_instance.to_dict()
# create an instance of ObjectStorageSharedOwner from a dict
object_storage_shared_owner_from_dict = ObjectStorageSharedOwner.from_dict(object_storage_shared_owner_dict)

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