UNPKG

@opcua/for-node-red

Version:

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

24 lines (23 loc) 1.7 kB
import type { UInt32 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { DTSamplingIntervalDiagnostics } from "./dt_sampling_interval_diagnostics"; import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |SamplingIntervalDiagnosticsType i=2165 | * |dataType |ExtensionObject | * |dataType Name |DTSamplingIntervalDiagnostics i=856 | * |value rank |-1 | * |isAbstract |false | */ export interface UASamplingIntervalDiagnostics_Base<T extends DTSamplingIntervalDiagnostics> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> { samplingInterval: UABaseDataVariable<number, DataType.Double>; sampledMonitoredItemsCount: UABaseDataVariable<UInt32, DataType.UInt32>; maxSampledMonitoredItemsCount: UABaseDataVariable<UInt32, DataType.UInt32>; disabledMonitoredItemsSamplingCount: UABaseDataVariable<UInt32, DataType.UInt32>; } export interface UASamplingIntervalDiagnostics<T extends DTSamplingIntervalDiagnostics> extends UABaseDataVariable<T, DataType.ExtensionObject>, UASamplingIntervalDiagnostics_Base<T> { }