[docs]classECls:"""E commands group definition. 8 total commands, 7 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("e",core,parent)@propertydefdtx(self):"""dtx commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_dtx'):from.DtximportDtxClsself._dtx=DtxCls(self._core,self._cmd_group)returnself._dtx@propertydeffcio(self):"""fcio commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_fcio'):from.FcioimportFcioClsself._fcio=FcioCls(self._core,self._cmd_group)returnself._fcio@propertydefmodulation(self):"""modulation commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_modulation'):from.ModulationimportModulationClsself._modulation=ModulationCls(self._core,self._cmd_group)returnself._modulation@propertydeforate(self):"""orate commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_orate'):from.OrateimportOrateClsself._orate=OrateCls(self._core,self._cmd_group)returnself._orate@propertydefpower(self):"""power commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_power'):from.PowerimportPowerClsself._power=PowerCls(self._core,self._cmd_group)returnself._power@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydefttiedch(self):"""ttiedch commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ttiedch'):from.TtiedchimportTtiedchClsself._ttiedch=TtiedchCls(self._core,self._cmd_group)returnself._ttiedchdefclone(self)->'ECls':"""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=ECls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group