You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Number of all objects (i.e. files and folders) in object storage.
Example
frompfruck_contabo.models.object_storages_stats_response_dataimportObjectStoragesStatsResponseData# TODO update the JSON string belowjson="{}"# create an instance of ObjectStoragesStatsResponseData from a JSON stringobject_storages_stats_response_data_instance=ObjectStoragesStatsResponseData.from_json(json)
# print the JSON string representation of the objectprint(ObjectStoragesStatsResponseData.to_json())
# convert the object into a dictobject_storages_stats_response_data_dict=object_storages_stats_response_data_instance.to_dict()
# create an instance of ObjectStoragesStatsResponseData from a dictobject_storages_stats_response_data_from_dict=ObjectStoragesStatsResponseData.from_dict(object_storages_stats_response_data_dict)