@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 1.12 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { LocalizedText } from "node-opcua-data-model";
import type { DataType } from "node-opcua-variant";
import type { UAAuditConditionEvent, UAAuditConditionEvent_Base } from "./ua_audit_condition_event";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AuditConditionCommentEventType i=2829 |
* |isAbstract |false |
*/
export interface UAAuditConditionCommentEvent_Base extends UAAuditConditionEvent_Base {
conditionEventId: UAProperty<Buffer, DataType.ByteString>;
comment: UAProperty<LocalizedText, DataType.LocalizedText>;
}
export interface UAAuditConditionCommentEvent extends UAAuditConditionEvent, UAAuditConditionCommentEvent_Base {
}