Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

DataChangeNotification.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

DataChangeNotification

Properties

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