Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1004 Bytes

File metadata and controls

30 lines (21 loc) · 1004 Bytes

FilteredStat

Properties

Name Type Description Notes
filters List[Filter] The filters that will be applied to the corresponding stat view [optional]
name str The name of the stat view [optional]

Example

from cyperf.models.filtered_stat import FilteredStat

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

# convert the object into a dict
filtered_stat_dict = filtered_stat_instance.to_dict()
# create an instance of FilteredStat from a dict
filtered_stat_from_dict = FilteredStat.from_dict(filtered_stat_dict)

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