@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
48 lines (47 loc) • 1.1 kB
text/typescript
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |NodeClass |
* | isAbstract|false |
*/
export enum EnumNodeClass {
/**
* No value is specified.
*/
Unspecified = 0,
/**
* The Node is an Object.
*/
Object = 1,
/**
* The Node is a Variable.
*/
Variable = 2,
/**
* The Node is a Method.
*/
Method = 4,
/**
* The Node is an ObjectType.
*/
ObjectType = 8,
/**
* The Node is a VariableType.
*/
VariableType = 16,
/**
* The Node is a ReferenceType.
*/
ReferenceType = 32,
/**
* The Node is a DataType.
*/
DataType = 64,
/**
* The Node is a View.
*/
View = 128,
}