Get the access level attribute of the node as a set of AccessLevel enum values.
(self)
| 102 | return opcua.common.ua_utils.data_type_to_variant_type(Node(self.server, result.Value.Value)) |
| 103 | |
| 104 | def get_access_level(self): |
| 105 | """ |
| 106 | Get the access level attribute of the node as a set of AccessLevel enum values. |
| 107 | """ |
| 108 | result = self.get_attribute(ua.AttributeIds.AccessLevel) |
| 109 | return ua.AccessLevel.parse_bitfield(result.Value.Value) |
| 110 | |
| 111 | def get_user_access_level(self): |
| 112 | """ |
nothing calls this directly
no test coverage detected