MonitoredItemNotification

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
client_handleint[optional] [default to 0]
valueDataValue[optional]

Example

from opcua_webapi.models.monitored_item_notification import MonitoredItemNotification

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

# convert the object into a dict
monitored_item_notification_dict = monitored_item_notification_instance.to_dict()
# create an instance of MonitoredItemNotification from a dict
monitored_item_notification_from_dict = MonitoredItemNotification.from_dict(monitored_item_notification_dict)

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