UNPKG

@opcua/for-node-red

Version:

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

26 lines (23 loc) 1.36 kB
import type { UAString } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { DTDataSetMeta } from "./dt_data_set_meta"; import type { DTKeyValuePair } from "./dt_key_value_pair"; import type { DTPublishedDataSetSource } from "./dt_published_data_set_source"; import type { DTStructure } from "./dt_structure"; // ----- this file has been automatically generated - do not edit /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |PublishedDataSetDataType | * | isAbstract|false | */ export interface DTPublishedDataSet extends DTStructure { name: UAString; // String ns=0;i=12 dataSetFolder: UAString[]; // String ns=0;i=12 dataSetMetaData: DTDataSetMeta; // ExtensionObject ns=0;i=14523 extensionFields: DTKeyValuePair[]; // ExtensionObject ns=0;i=14533 dataSetSource?: DTPublishedDataSetSource; // ExtensionObject ns=0;i=15580 } export interface UDTPublishedDataSet extends ExtensionObject, DTPublishedDataSet {};