Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

BucketListStats

Aggregate statistics for a list of buckets.

Properties

Name Type Description Notes
total_objects int Total number of objects across all buckets [optional] [default to 0]
total_size_bytes int Total size in bytes across all buckets [optional] [default to 0]
avg_objects_per_bucket float Average number of objects per bucket [optional] [default to 0]
avg_size_per_bucket float Average size in bytes per bucket [optional] [default to 0]

Example

from mixpeek.models.bucket_list_stats import BucketListStats

# TODO update the JSON string below
json = "{}"
# create an instance of BucketListStats from a JSON string
bucket_list_stats_instance = BucketListStats.from_json(json)
# print the JSON string representation of the object
print(BucketListStats.to_json())

# convert the object into a dict
bucket_list_stats_dict = bucket_list_stats_instance.to_dict()
# create an instance of BucketListStats from a dict
bucket_list_stats_from_dict = BucketListStats.from_dict(bucket_list_stats_dict)

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