@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (16 loc) • 1.02 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "./ua_audit_update_method_event";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AuditUpdateStateEventType i=2315 |
* |isAbstract |true |
*/
export interface UAAuditUpdateStateEvent_Base extends UAAuditUpdateMethodEvent_Base {
oldStateId: UAProperty<any, any>;
newStateId: UAProperty<any, any>;
}
export interface UAAuditUpdateStateEvent extends UAAuditUpdateMethodEvent, UAAuditUpdateStateEvent_Base {}