[docs]classDiagnosticCls:"""Diagnostic commands group definition. 22 total commands, 8 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("diagnostic",core,parent)@propertydefbgInfo(self):"""bgInfo commands group. 0 Sub-classes, 2 commands."""ifnothasattr(self,'_bgInfo'):from.BgInfoimportBgInfoClsself._bgInfo=BgInfoCls(self._core,self._cmd_group)returnself._bgInfo@propertydefdebug(self):"""debug commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_debug'):from.DebugimportDebugClsself._debug=DebugCls(self._core,self._cmd_group)returnself._debug@propertydefeeprom(self):"""eeprom commands group. 2 Sub-classes, 1 commands."""ifnothasattr(self,'_eeprom'):from.EepromimportEepromClsself._eeprom=EepromCls(self._core,self._cmd_group)returnself._eeprom@propertydefinfo(self):"""info commands group. 3 Sub-classes, 0 commands."""ifnothasattr(self,'_info'):from.InfoimportInfoClsself._info=InfoCls(self._core,self._cmd_group)returnself._info@propertydefpoint(self):"""point commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_point'):from.PointimportPointClsself._point=PointCls(self._core,self._cmd_group)returnself._point@propertydefservice(self):"""service commands group. 0 Sub-classes, 2 commands."""ifnothasattr(self,'_service'):from.ServiceimportServiceClsself._service=ServiceCls(self._core,self._cmd_group)returnself._service@propertydeftest(self):"""test commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_test'):from.TestimportTestClsself._test=TestCls(self._core,self._cmd_group)returnself._test@propertydefmeasure(self):"""measure commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_measure'):from.MeasureimportMeasureClsself._measure=MeasureCls(self._core,self._cmd_group)returnself._measuredefclone(self)->'DiagnosticCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=DiagnosticCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group