import { UAObject } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UInt32, UInt16 } from "node-opcua-basic-types"; import { UAPubSubDiagnostics_counters, UAPubSubDiagnostics, UAPubSubDiagnostics_Base } from "./ua_pub_sub_diagnostics"; import { UAPubSubDiagnosticsCounter } from "./ua_pub_sub_diagnostics_counter"; import { UABaseDataVariable } from "./ua_base_data_variable"; export interface UAPubSubDiagnosticsWriterGroup_counters extends UAPubSubDiagnostics_counters { sentNetworkMessages: UAPubSubDiagnosticsCounter; failedTransmissions: UAPubSubDiagnosticsCounter; encryptionErrors: UAPubSubDiagnosticsCounter; } export interface UAPubSubDiagnosticsWriterGroup_liveValues extends UAObject { configuredDataSetWriters: UABaseDataVariable; operationalDataSetWriters: UABaseDataVariable; securityTokenID?: UABaseDataVariable; timeToNextTokenID?: UABaseDataVariable; } /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubDiagnosticsWriterGroupType i=19834 | * |isAbstract |false | */ export interface UAPubSubDiagnosticsWriterGroup_Base extends UAPubSubDiagnostics_Base { counters: UAPubSubDiagnosticsWriterGroup_counters; liveValues: UAPubSubDiagnosticsWriterGroup_liveValues; } export interface UAPubSubDiagnosticsWriterGroup extends Omit, UAPubSubDiagnosticsWriterGroup_Base { }