@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (22 loc) • 1.33 kB
TypeScript
import type { UAMethod, UAProperty } from "node-opcua-address-space-base";
import type { NodeId } from "node-opcua-nodeid";
import type { DataType } from "node-opcua-variant";
import type { DTContentFilter } from "./dt_content_filter";
import type { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand";
import type { UAPublishedDataSet, UAPublishedDataSet_Base } from "./ua_published_data_set";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |PublishedEventsType i=14572 |
* |isAbstract |false |
*/
export interface UAPublishedEvents_Base extends UAPublishedDataSet_Base {
"$eventNotifier": UAProperty<NodeId, DataType.NodeId>;
selectedFields: UAProperty<DTSimpleAttributeOperand[], DataType.ExtensionObject>;
filter: UAProperty<DTContentFilter, DataType.ExtensionObject>;
modifyFieldSelection?: UAMethod;
}
export interface UAPublishedEvents extends UAPublishedDataSet, UAPublishedEvents_Base {
}