import { UAObject, UAMethod } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UInt32 } from "node-opcua-basic-types"; import { UAPubSubDiagnosticsCounter } from "./ua_pub_sub_diagnostics_counter"; import { EnumDiagnosticsLevel } from "./enum_diagnostics_level"; import { UABaseDataVariable } from "./ua_base_data_variable"; export interface UAPubSubDiagnostics_counters extends UAObject { stateError: UAPubSubDiagnosticsCounter; stateOperationalByMethod: UAPubSubDiagnosticsCounter; stateOperationalByParent: UAPubSubDiagnosticsCounter; stateOperationalFromError: UAPubSubDiagnosticsCounter; statePausedByParent: UAPubSubDiagnosticsCounter; stateDisabledByMethod: UAPubSubDiagnosticsCounter; } /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubDiagnosticsType i=19677 | * |isAbstract |true | */ export interface UAPubSubDiagnostics_Base { diagnosticsLevel: UABaseDataVariable; totalInformation: UAPubSubDiagnosticsCounter; totalError: UAPubSubDiagnosticsCounter; reset: UAMethod; subError: UABaseDataVariable; counters: UAPubSubDiagnostics_counters; liveValues: UAObject; } export interface UAPubSubDiagnostics extends UAObject, UAPubSubDiagnostics_Base { }