DataChangeNotification

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
monitored_itemsList[MonitoredItemNotification][optional]
diagnostic_infosList[DiagnosticInfo][optional]

Example

from opcua_webapi.models.data_change_notification import DataChangeNotification

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

# convert the object into a dict
data_change_notification_dict = data_change_notification_instance.to_dict()
# create an instance of DataChangeNotification from a dict
data_change_notification_from_dict = DataChangeNotification.from_dict(data_change_notification_dict)

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