AggregateConfiguration

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
use_server_capabilities_defaultsbool[optional] [default to False]
treat_uncertain_as_badbool[optional] [default to False]
percent_data_badint[optional] [default to 0]
percent_data_goodint[optional] [default to 0]
use_sloped_extrapolationbool[optional] [default to False]

Example

from opcua_webapi.models.aggregate_configuration import AggregateConfiguration

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

# convert the object into a dict
aggregate_configuration_dict = aggregate_configuration_instance.to_dict()
# create an instance of AggregateConfiguration from a dict
aggregate_configuration_from_dict = AggregateConfiguration.from_dict(aggregate_configuration_dict)

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