AggregateFilter

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
start_timedatetime[optional]
aggregate_typestr[optional]
processing_intervalfloat[optional] [default to 0]
aggregate_configurationAggregateConfiguration[optional]

Example

from opcua_webapi.models.aggregate_filter import AggregateFilter

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

# convert the object into a dict
aggregate_filter_dict = aggregate_filter_instance.to_dict()
# create an instance of AggregateFilter from a dict
aggregate_filter_from_dict = AggregateFilter.from_dict(aggregate_filter_dict)

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