[docs]classHopCls:"""Hop commands group definition. 7 total commands, 7 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("hop",core,parent)@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydeftiming(self):"""timing commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_timing'):from.TimingimportTimingClsself._timing=TimingCls(self._core,self._cmd_group)returnself._timing@propertydeffrequency(self):"""frequency commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_frequency'):from.FrequencyimportFrequencyClsself._frequency=FrequencyCls(self._core,self._cmd_group)returnself._frequency@propertydefpower(self):"""power commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_power'):from.PowerimportPowerClsself._power=PowerCls(self._core,self._cmd_group)returnself._power@propertydefphase(self):"""phase commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_phase'):from.PhaseimportPhaseClsself._phase=PhaseCls(self._core,self._cmd_group)returnself._phase@propertydeffmSettling(self):"""fmSettling commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_fmSettling'):from.FmSettlingimportFmSettlingClsself._fmSettling=FmSettlingCls(self._core,self._cmd_group)returnself._fmSettling@propertydefpmSettling(self):"""pmSettling commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_pmSettling'):from.PmSettlingimportPmSettlingClsself._pmSettling=PmSettlingCls(self._core,self._cmd_group)returnself._pmSettlingdefclone(self)->'HopCls':"""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=HopCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group