EventNotificationList
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| events | List[EventFieldList] | [optional] |
Example
from opcua_webapi.models.event_notification_list import EventNotificationList
# TODO update the JSON string below
json = "{}"
# create an instance of EventNotificationList from a JSON string
event_notification_list_instance = EventNotificationList.from_json(json)
# print the JSON string representation of the object
print(EventNotificationList.to_json())
# convert the object into a dict
event_notification_list_dict = event_notification_list_instance.to_dict()
# create an instance of EventNotificationList from a dict
event_notification_list_from_dict = EventNotificationList.from_dict(event_notification_list_dict)