@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
22 lines (21 loc) • 1.18 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { NodeId } from "node-opcua-nodeid";
import type { StatusCode } from "node-opcua-status-code";
import type { DataType } from "node-opcua-variant";
import type { UAAuditEvent, UAAuditEvent_Base } from "./ua_audit_event";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AuditUpdateMethodEventType i=2127 |
* |isAbstract |true |
*/
export interface UAAuditUpdateMethodEvent_Base extends UAAuditEvent_Base {
methodId: UAProperty<NodeId, DataType.NodeId>;
statusCodeId?: UAProperty<StatusCode, DataType.StatusCode>;
inputArguments: UAProperty<any, any>;
outputArguments?: UAProperty<any, any>;
}
export interface UAAuditUpdateMethodEvent extends UAAuditEvent, UAAuditUpdateMethodEvent_Base {
}