[docs]classPrecodingCls:"""Precoding commands group definition. 9 total commands, 9 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("precoding",core,parent)@propertydefap(self):"""ap commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ap'):from.ApimportApClsself._ap=ApCls(self._core,self._cmd_group)returnself._ap@propertydefapm(self):"""apm commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_apm'):from.ApmimportApmClsself._apm=ApmCls(self._core,self._cmd_group)returnself._apm@propertydefcbIndex(self):"""cbIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cbIndex'):from.CbIndeximportCbIndexClsself._cbIndex=CbIndexCls(self._core,self._cmd_group)returnself._cbIndex@propertydefcdd(self):"""cdd commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cdd'):from.CddimportCddClsself._cdd=CddCls(self._core,self._cmd_group)returnself._cdd@propertydefdaFormat(self):"""daFormat commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_daFormat'):from.DaFormatimportDaFormatClsself._daFormat=DaFormatCls(self._core,self._cmd_group)returnself._daFormat@propertydefnoLayers(self):"""noLayers commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_noLayers'):from.NoLayersimportNoLayersClsself._noLayers=NoLayersCls(self._core,self._cmd_group)returnself._noLayers@propertydefscheme(self):"""scheme commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_scheme'):from.SchemeimportSchemeClsself._scheme=SchemeCls(self._core,self._cmd_group)returnself._scheme@propertydefscid(self):"""scid commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_scid'):from.ScidimportScidClsself._scid=ScidCls(self._core,self._cmd_group)returnself._scid@propertydeftrScheme(self):"""trScheme commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_trScheme'):from.TrSchemeimportTrSchemeClsself._trScheme=TrSchemeCls(self._core,self._cmd_group)returnself._trSchemedefclone(self)->'PrecodingCls':"""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=PrecodingCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group