UNPKG

@opcua/for-node-red

Version:

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

27 lines (26 loc) 1.21 kB
import type { UAString, UInt32 } from "node-opcua-basic-types"; import type { QualifiedName } from "node-opcua-data-model"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { NodeId } from "node-opcua-nodeid"; import type { Variant } from "node-opcua-variant"; import type { DTStructure } from "./dt_structure"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |PublishedVariableDataType | * | isAbstract|false | */ export interface DTPublishedVariable extends DTStructure { publishedVariable: NodeId; attributeId: UInt32; samplingIntervalHint: number; deadbandType: UInt32; deadbandValue: number; indexRange: UAString; substituteValue: Variant; metaDataProperties: QualifiedName[]; } export interface UDTPublishedVariable extends ExtensionObject, DTPublishedVariable { }