UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

43 lines (40 loc) 2.39 kB
import type { UAString, UInt16, UInt32 } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { Variant } from "node-opcua-variant"; import type { DTDataSetMeta } from "./dt_data_set_meta"; import type { DTDataSetReaderMessage } from "./dt_data_set_reader_message"; import type { DTDataSetReaderTransport } from "./dt_data_set_reader_transport"; import type { DTEndpointDescription } from "./dt_endpoint_description"; import type { DTKeyValuePair } from "./dt_key_value_pair"; import type { DTStructure } from "./dt_structure"; import type { DTSubscribedDataSet } from "./dt_subscribed_data_set"; import type { EnumMessageSecurityMode } from "./enum_message_security_mode"; // ----- this file has been automatically generated - do not edit /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |DataSetReaderDataType | * | isAbstract|false | */ export interface DTDataSetReader extends DTStructure { name: UAString; // String ns=0;i=12 enabled: boolean; // Boolean ns=0;i=1 publisherId: Variant; // Variant ns=0;i=24 writerGroupId: UInt16; // UInt16 ns=0;i=5 dataSetWriterId: UInt16; // UInt16 ns=0;i=5 dataSetMetaData: DTDataSetMeta; // ExtensionObject ns=0;i=14523 dataSetFieldContentMask: UInt32; // UInt32 ns=0;i=15583 messageReceiveTimeout: number; // Double ns=0;i=290 keyFrameCount: UInt32; // UInt32 ns=0;i=7 headerLayoutUri: UAString; // String ns=0;i=12 securityMode: EnumMessageSecurityMode; // Int32 ns=0;i=302 securityGroupId: UAString; // String ns=0;i=12 securityKeyServices: DTEndpointDescription[]; // ExtensionObject ns=0;i=312 dataSetReaderProperties: DTKeyValuePair[]; // ExtensionObject ns=0;i=14533 transportSettings?: DTDataSetReaderTransport; // ExtensionObject ns=0;i=15628 messageSettings?: DTDataSetReaderMessage; // ExtensionObject ns=0;i=15629 subscribedDataSet?: DTSubscribedDataSet; // ExtensionObject ns=0;i=15630 } export interface UDTDataSetReader extends ExtensionObject, DTDataSetReader {};