@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
21 lines (20 loc) • 1.14 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UAString, UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UAAuditUpdateEvent, UAAuditUpdateEvent_Base } from "./ua_audit_update_event";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AuditWriteUpdateEventType i=2100 |
* |isAbstract |true |
*/
export interface UAAuditWriteUpdateEvent_Base extends UAAuditUpdateEvent_Base {
attributeId: UAProperty<UInt32, DataType.UInt32>;
indexRange: UAProperty<UAString, DataType.String>;
oldValue: UAProperty<any, any>;
newValue: UAProperty<any, any>;
}
export interface UAAuditWriteUpdateEvent extends UAAuditUpdateEvent, UAAuditWriteUpdateEvent_Base {
}