Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

CountedFeatureStats

Counted feature stats.

Properties

Name Type Description Notes
available_count int Available count.
consumers List[CountedFeatureConsumer] Consumed by.
feature_name str The feature name.
installed_count int Total installed count.

Example

from cyperf.models.counted_feature_stats import CountedFeatureStats

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

# convert the object into a dict
counted_feature_stats_dict = counted_feature_stats_instance.to_dict()
# create an instance of CountedFeatureStats from a dict
counted_feature_stats_from_dict = CountedFeatureStats.from_dict(counted_feature_stats_dict)

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