[docs]classHsupaCls:"""Hsupa commands group definition. 18 total commands, 3 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("hsupa",core,parent)@propertydefeagch(self):"""eagch commands group. 4 Sub-classes, 0 commands."""ifnothasattr(self,'_eagch'):from.EagchimportEagchClsself._eagch=EagchCls(self._core,self._cmd_group)returnself._eagch@propertydefehich(self):"""ehich commands group. 6 Sub-classes, 0 commands."""ifnothasattr(self,'_ehich'):from.EhichimportEhichClsself._ehich=EhichCls(self._core,self._cmd_group)returnself._ehich@propertydefergch(self):"""ergch commands group. 6 Sub-classes, 0 commands."""ifnothasattr(self,'_ergch'):from.ErgchimportErgchClsself._ergch=ErgchCls(self._core,self._cmd_group)returnself._ergchdefclone(self)->'HsupaCls':"""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=HsupaCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group