Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

TimeseriesFilter.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

TimeseriesFilter

Filter that will be applied to datapoints before aggregation is performed.

Properties

Name Type Description Notes
operator TimeseriesFilterOperatorOperator
value TimeseriesFilterValueExactValue
lower_bound float
upper_bound float

Example

from waylay.services.data.models.timeseries_filter import TimeseriesFilter

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

# convert the object into a dict
timeseries_filter_dict = timeseries_filter_instance.to_dict()
# create an instance of TimeseriesFilter from a dict
timeseries_filter_form_dict = timeseries_filter.from_dict(timeseries_filter_dict)

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