Storage growth trends response.
| Name | Type | Description | Notes |
|---|---|---|---|
| bucket_id | str | Bucket identifier | |
| time_range | ApiAnalyticsBucketsModelsTimeRange | Query time range | |
| metrics | List[StorageMetric] | Time-series storage metrics | |
| summary | Dict[str, object] | Summary statistics | [optional] |
from mixpeek.models.bucket_storage_response import BucketStorageResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BucketStorageResponse from a JSON string
bucket_storage_response_instance = BucketStorageResponse.from_json(json)
# print the JSON string representation of the object
print(BucketStorageResponse.to_json())
# convert the object into a dict
bucket_storage_response_dict = bucket_storage_response_instance.to_dict()
# create an instance of BucketStorageResponse from a dict
bucket_storage_response_from_dict = BucketStorageResponse.from_dict(bucket_storage_response_dict)