Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

ListBucketsResponse

Response model for listing buckets.

Properties

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]

Example

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)

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