Name | Type | Description | Notes |
---|---|---|---|
monitored_items | List[MonitoredItemNotification] | [optional] | |
diagnostic_infos | List[DiagnosticInfo] | [optional] |
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)