Name | Type | Description | Notes |
---|---|---|---|
data | List[ObjectStoragesStatsResponseData] | ||
links | SelfLinks |
from pfruck_contabo.models.object_storages_stats_response import ObjectStoragesStatsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ObjectStoragesStatsResponse from a JSON string
object_storages_stats_response_instance = ObjectStoragesStatsResponse.from_json(json)
# print the JSON string representation of the object
print(ObjectStoragesStatsResponse.to_json())
# convert the object into a dict
object_storages_stats_response_dict = object_storages_stats_response_instance.to_dict()
# create an instance of ObjectStoragesStatsResponse from a dict
object_storages_stats_response_from_dict = ObjectStoragesStatsResponse.from_dict(object_storages_stats_response_dict)