@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
22 lines (21 loc) • 1.07 kB
TypeScript
import type { ExtensionObject } from "node-opcua-extension-object";
import type { NodeId } from "node-opcua-nodeid";
import type { DTDataTypeDefinition } from "./dt_data_type_definition";
import type { DTStructureField } from "./dt_structure_field";
import type { EnumStructure } from "./enum_structure";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |StructureDefinition |
* | isAbstract|false |
*/
export interface DTStructureDefinition extends DTDataTypeDefinition {
defaultEncodingId: NodeId;
baseDataType: NodeId;
structureType: EnumStructure;
fields: DTStructureField[];
}
export interface UDTStructureDefinition extends ExtensionObject, DTStructureDefinition {
}