[docs]classPdChannelCls:"""PdChannel commands group definition. 8 total commands, 4 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pdChannel",core,parent)@propertydefpinterval(self):"""pinterval commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_pinterval'):from.PintervalimportPintervalClsself._pinterval=PintervalCls(self._core,self._cmd_group)returnself._pinterval@propertydefpsetup(self):"""psetup commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_psetup'):from.PsetupimportPsetupClsself._psetup=PsetupCls(self._core,self._cmd_group)returnself._psetup@propertydefsubPacket(self):"""subPacket commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_subPacket'):from.SubPacketimportSubPacketClsself._subPacket=SubPacketCls(self._core,self._cmd_group)returnself._subPacket@propertydefwindex(self):"""windex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_windex'):from.WindeximportWindexClsself._windex=WindexCls(self._core,self._cmd_group)returnself._windexdefclone(self)->'PdChannelCls':"""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=PdChannelCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group