[docs]classIqCls:"""Iq commands group definition. 3 total commands, 3 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("iq",core,parent)@propertydefcomment(self):"""comment commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_comment'):from.CommentimportCommentClsself._comment=CommentCls(self._core,self._cmd_group)returnself._comment@propertydefrange(self):"""range commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_range'):from.RangeimportRangeClsself._range=RangeCls(self._core,self._cmd_group)returnself._range@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._statedefclone(self)->'IqCls':"""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=IqCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group