UNPKG

@opcua/for-node-red

Version:

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

19 lines (18 loc) 1.12 kB
import type { UAProperty } from "node-opcua-address-space-base"; import type { UInt32 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { UADataSetReaderMessage, UADataSetReaderMessage_Base } from "./ua_data_set_reader_message"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |JsonDataSetReaderMessageType i=21130 | * |isAbstract |false | */ export interface UAJsonDataSetReaderMessage_Base extends UADataSetReaderMessage_Base { networkMessageContentMask: UAProperty<UInt32, DataType.UInt32>; dataSetMessageContentMask: UAProperty<UInt32, DataType.UInt32>; } export interface UAJsonDataSetReaderMessage extends UADataSetReaderMessage, UAJsonDataSetReaderMessage_Base { }