Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.41 KB

ObjectStoragesStatsResponseData.md

File metadata and controls

33 lines (24 loc) · 1.41 KB

ObjectStoragesStatsResponseData

Properties

Name Type Description Notes
tenant_id str Your customer tenant id
customer_id str Your customer number
used_space_tb float Currently used space in TB.
used_space_percentage float Currently used space in percentage.
number_of_objects int Number of all objects (i.e. files and folders) in object storage.

Example

from pfruck_contabo.models.object_storages_stats_response_data import ObjectStoragesStatsResponseData

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

# convert the object into a dict
object_storages_stats_response_data_dict = object_storages_stats_response_data_instance.to_dict()
# create an instance of ObjectStoragesStatsResponseData from a dict
object_storages_stats_response_data_from_dict = ObjectStoragesStatsResponseData.from_dict(object_storages_stats_response_data_dict)

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