Response model for listing buckets.
| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[BucketResponse] | ||
| total_count | int | Total number of buckets matching the query | |
| pagination | PaginationResponse | ||
| stats | BucketListStats | Aggregate statistics across all buckets in the result | [optional] |
from mixpeek.models.list_buckets_response import ListBucketsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListBucketsResponse from a JSON string
list_buckets_response_instance = ListBucketsResponse.from_json(json)
# print the JSON string representation of the object
print(ListBucketsResponse.to_json())
# convert the object into a dict
list_buckets_response_dict = list_buckets_response_instance.to_dict()
# create an instance of ListBucketsResponse from a dict
list_buckets_response_from_dict = ListBucketsResponse.from_dict(list_buckets_response_dict)