UNPKG

@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
// ----- this file has been automatically generated - do not edit /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |HistoryUpdateType | * | isAbstract|false | */ export enum EnumHistoryUpdate { /** * Data was inserted. */ Insert = 1, /** * Data was replaced. */ Replace = 2, /** * Data was inserted or replaced. */ Update = 3, /** * Data was deleted. */ Delete = 4, }