@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (20 loc) • 1.21 kB
text/typescript
import type { ExtensionObject } from "node-opcua-extension-object";
import type { NodeId } from "node-opcua-nodeid";
import type { DTContentFilter } from "./dt_content_filter";
import type { DTPublishedDataSetSource } from "./dt_published_data_set_source";
import type { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PublishedEventsDataType |
* | isAbstract|false |
*/
export interface DTPublishedEvents extends DTPublishedDataSetSource {
eventNotifier: NodeId; // NodeId ns=0;i=17
selectedFields: DTSimpleAttributeOperand[]; // ExtensionObject ns=0;i=601
filter: DTContentFilter; // ExtensionObject ns=0;i=586
}
export interface UDTPublishedEvents extends ExtensionObject, DTPublishedEvents {};