[docs]classDpchCls:"""Dpch commands group definition. 36 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("dpch",core,parent)@propertydefccoding(self):"""ccoding commands group. 6 Sub-classes, 0 commands."""ifnothasattr(self,'_ccoding'):from.CcodingimportCcodingClsself._ccoding=CcodingCls(self._core,self._cmd_group)returnself._ccoding@propertydefderror(self):"""derror commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_derror'):from.DerrorimportDerrorClsself._derror=DerrorCls(self._core,self._cmd_group)returnself._derror@propertydefdpControl(self):"""dpControl commands group. 6 Sub-classes, 0 commands."""ifnothasattr(self,'_dpControl'):from.DpControlimportDpControlClsself._dpControl=DpControlCls(self._core,self._cmd_group)returnself._dpControl@propertydefinterleaver2(self):"""interleaver2 commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_interleaver2'):from.Interleaver2importInterleaver2Clsself._interleaver2=Interleaver2Cls(self._core,self._cmd_group)returnself._interleaver2@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydeftchannel(self):"""tchannel commands group. 10 Sub-classes, 0 commands."""ifnothasattr(self,'_tchannel'):from.TchannelimportTchannelClsself._tchannel=TchannelCls(self._core,self._cmd_group)returnself._tchanneldefclone(self)->'DpchCls':"""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=DpchCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group