Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 987 Bytes

File metadata and controls

32 lines (23 loc) · 987 Bytes

QuickStats

Properties

Name Type Description Notes
active_configs int
active_experiments int
average_satisfaction7_d float [optional]
spend_month_to_date float [optional]

Example

from launchdarkly_api.models.quick_stats import QuickStats

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

# convert the object into a dict
quick_stats_dict = quick_stats_instance.to_dict()
# create an instance of QuickStats from a dict
quick_stats_from_dict = QuickStats.from_dict(quick_stats_dict)

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