UAVariable.ts 611 B

1234567891011121314151617
  1. import type { NodeId } from "./NodeId";
  2. import { UABaseNode } from "./UABaseNode";
  3. import { UAReference } from "./UAReference";
  4. export class UAVariable extends UABaseNode {
  5. constructor(public nodeId: NodeId,
  6. public browseName: string,
  7. public displayName: string,
  8. public references: UAReference[]) {
  9. super(nodeId, browseName, displayName, references);
  10. }
  11. static parse(uaObject: any): UAVariable{
  12. const bn=super.parse(uaObject)
  13. return new UAVariable(bn.nodeId, bn.browseName, bn.displayName, bn.references);
  14. }
  15. }