Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

CountBucketsResult

Properties

Name Type Description Notes
buckets List[CountBucket]
total_count int
bucket_interval_ms int

Example

from launchdarkly_api.models.count_buckets_result import CountBucketsResult

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

# convert the object into a dict
count_buckets_result_dict = count_buckets_result_instance.to_dict()
# create an instance of CountBucketsResult from a dict
count_buckets_result_from_dict = CountBucketsResult.from_dict(count_buckets_result_dict)

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