DataChangeFilter
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| trigger | int | Link to specification. | [optional] |
| deadband_type | int | [optional] [default to 0] | |
| deadband_value | float | [optional] [default to 0] |
Example
from opcua_webapi.models.data_change_filter import DataChangeFilter
# TODO update the JSON string below
json = "{}"
# create an instance of DataChangeFilter from a JSON string
data_change_filter_instance = DataChangeFilter.from_json(json)
# print the JSON string representation of the object
print(DataChangeFilter.to_json())
# convert the object into a dict
data_change_filter_dict = data_change_filter_instance.to_dict()
# create an instance of DataChangeFilter from a dict
data_change_filter_from_dict = DataChangeFilter.from_dict(data_change_filter_dict)