Get the event notifier attribute of the node as a set of EventNotifier enum values.
(self)
| 116 | return ua.AccessLevel.parse_bitfield(result.Value.Value) |
| 117 | |
| 118 | def get_event_notifier(self): |
| 119 | """ |
| 120 | Get the event notifier attribute of the node as a set of EventNotifier enum values. |
| 121 | """ |
| 122 | result = self.get_attribute(ua.AttributeIds.EventNotifier) |
| 123 | return ua.EventNotifier.parse_bitfield(result.Value.Value) |
| 124 | |
| 125 | def set_event_notifier(self, values): |
| 126 | """ |