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