Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 872 Bytes

File metadata and controls

30 lines (21 loc) · 872 Bytes

CountBucket

Properties

Name Type Description Notes
timestamp int
count int

Example

from launchdarkly_api.models.count_bucket import CountBucket

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

# convert the object into a dict
count_bucket_dict = count_bucket_instance.to_dict()
# create an instance of CountBucket from a dict
count_bucket_from_dict = CountBucket.from_dict(count_bucket_dict)

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