AggregateFilterResult

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
revised_start_timedatetime[optional]
revised_processing_intervalfloat[optional] [default to 0]
revised_aggregate_configurationAggregateConfiguration[optional]

Example

from opcua_webapi.models.aggregate_filter_result import AggregateFilterResult

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

# convert the object into a dict
aggregate_filter_result_dict = aggregate_filter_result_instance.to_dict()
# create an instance of AggregateFilterResult from a dict
aggregate_filter_result_from_dict = AggregateFilterResult.from_dict(aggregate_filter_result_dict)

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