[docs]classDpcchCls:"""Dpcch commands group definition. 60 total commands, 8 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("dpcch",core,parent)@propertydefccode(self):"""ccode commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ccode'):from.CcodeimportCcodeClsself._ccode=CcodeCls(self._core,self._cmd_group)returnself._ccode@propertydeffbi(self):"""fbi commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_fbi'):from.FbiimportFbiClsself._fbi=FbiCls(self._core,self._cmd_group)returnself._fbi@propertydefhs(self):"""hs commands group. 20 Sub-classes, 0 commands."""ifnothasattr(self,'_hs'):from.HsimportHsClsself._hs=HsCls(self._core,self._cmd_group)returnself._hs@propertydefpower(self):"""power commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_power'):from.PowerimportPowerClsself._power=PowerCls(self._core,self._cmd_group)returnself._power@propertydefsformat(self):"""sformat commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_sformat'):from.SformatimportSformatClsself._sformat=SformatCls(self._core,self._cmd_group)returnself._sformat@propertydeftfci(self):"""tfci commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_tfci'):from.TfciimportTfciClsself._tfci=TfciCls(self._core,self._cmd_group)returnself._tfci@propertydeftoffset(self):"""toffset commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_toffset'):from.ToffsetimportToffsetClsself._toffset=ToffsetCls(self._core,self._cmd_group)returnself._toffset@propertydeftpc(self):"""tpc commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_tpc'):from.TpcimportTpcClsself._tpc=TpcCls(self._core,self._cmd_group)returnself._tpcdefclone(self)->'DpcchCls':"""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=DpcchCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group