return variables of node. properties are child nodes with a reference of type HasComponent and a NodeClass of Variable
(self)
| 323 | return self.get_children(refs=ua.ObjectIds.HasProperty, nodeclassmask=ua.NodeClass.Variable) |
| 324 | |
| 325 | def get_variables(self): |
| 326 | """ |
| 327 | return variables of node. |
| 328 | properties are child nodes with a reference of type HasComponent and a NodeClass of Variable |
| 329 | """ |
| 330 | return self.get_children(refs=ua.ObjectIds.HasComponent, nodeclassmask=ua.NodeClass.Variable) |
| 331 | |
| 332 | def get_methods(self): |
| 333 | """ |