@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
31 lines (30 loc) • 1.56 kB
TypeScript
import type { Guid, UAString } from "node-opcua-basic-types";
import type { LocalizedText } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTConfigurationVersion } from "./dt_configuration_version";
import type { DTDataTypeSchemaHeader } from "./dt_data_type_schema_header";
import type { DTEnumDescription } from "./dt_enum_description";
import type { DTFieldMetaData } from "./dt_field_meta_data";
import type { DTSimpleTypeDescription } from "./dt_simple_type_description";
import type { DTStructureDescription } from "./dt_structure_description";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |DataSetMetaDataType |
* | isAbstract|false |
*/
export interface DTDataSetMeta extends DTDataTypeSchemaHeader {
namespaces: UAString[];
structureDataTypes: DTStructureDescription[];
enumDataTypes: DTEnumDescription[];
simpleDataTypes: DTSimpleTypeDescription[];
name: UAString;
description: LocalizedText;
fields: DTFieldMetaData[];
dataSetClassId: Guid;
configurationVersion: DTConfigurationVersion;
}
export interface UDTDataSetMeta extends ExtensionObject, DTDataSetMeta {
}