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 (25 loc) 1.2 kB
import type { Guid, UAString, UInt32 } from "node-opcua-basic-types"; 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"; import type { EnumOverrideValueHandling } from "./enum_override_value_handling"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |FieldTargetDataType | * | isAbstract|false | */ export interface DTFieldTarget extends DTStructure { dataSetFieldId: Guid; receiverIndexRange: UAString; targetNodeId: NodeId; attributeId: UInt32; writeIndexRange: UAString; overrideValueHandling: EnumOverrideValueHandling; overrideValue: Variant; } export interface UDTFieldTarget extends ExtensionObject, DTFieldTarget { }