@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
28 lines (27 loc) • 789 B
text/typescript
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PerformUpdateType |
* | isAbstract|false |
*/
export enum EnumPerformUpdate {
/**
* Data was inserted.
*/
Insert = 1,
/**
* Data was replaced.
*/
Replace = 2,
/**
* Data was inserted or replaced.
*/
Update = 3,
/**
* Data was deleted.
*/
Remove = 4,
}