Get the user access level attribute of the node as a set of AccessLevel enum values.
(self)
| 109 | return ua.AccessLevel.parse_bitfield(result.Value.Value) |
| 110 | |
| 111 | def get_user_access_level(self): |
| 112 | """ |
| 113 | Get the user access level attribute of the node as a set of AccessLevel enum values. |
| 114 | """ |
| 115 | result = self.get_attribute(ua.AttributeIds.UserAccessLevel) |
| 116 | return ua.AccessLevel.parse_bitfield(result.Value.Value) |
| 117 | |
| 118 | def get_event_notifier(self): |
| 119 | """ |
nothing calls this directly
no test coverage detected