MonitoredItemNotification
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| client_handle | int | [optional] [default to 0] | |
| value | DataValue | [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)