@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
18 lines (17 loc) • 999 B
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UAAuditSessionEvent, UAAuditSessionEvent_Base } from "./ua_audit_session_event";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AuditCancelEventType i=2078 |
* |isAbstract |true |
*/
export interface UAAuditCancelEvent_Base extends UAAuditSessionEvent_Base {
requestHandle: UAProperty<UInt32, DataType.UInt32>;
}
export interface UAAuditCancelEvent extends UAAuditSessionEvent, UAAuditCancelEvent_Base {
}