[docs]classCellCls:"""Cell commands group definition. 15 total commands, 14 Subgroups, 0 group commands Repeated Capability: CellNull, default value after init: CellNull.Nr0"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("cell",core,parent)self._cmd_group.rep_cap=RepeatedCapability(self._cmd_group.group_name,'repcap_cellNull_get','repcap_cellNull_set',repcap.CellNull.Nr0)defrepcap_cellNull_set(self,cellNull:repcap.CellNull)->None:"""Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to CellNull.Default. Default value after init: CellNull.Nr0"""self._cmd_group.set_repcap_enum_value(cellNull)defrepcap_cellNull_get(self)->repcap.CellNull:"""Returns the current default repeated capability for the child set/get methods"""# noinspection PyTypeCheckerreturnself._cmd_group.get_repcap_enum_value()@propertydefbw(self):"""bw commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_bw'):from.BwimportBwClsself._bw=BwCls(self._core,self._cmd_group)returnself._bw@propertydefcif(self):"""cif commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cif'):from.CifimportCifClsself._cif=CifCls(self._core,self._cmd_group)returnself._cif@propertydefdfreq(self):"""dfreq commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_dfreq'):from.DfreqimportDfreqClsself._dfreq=DfreqCls(self._core,self._cmd_group)returnself._dfreq@propertydefid(self):"""id commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_id'):from.IdimportIdClsself._id=IdCls(self._core,self._cmd_group)returnself._id@propertydefindex(self):"""index commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_index'):from.IndeximportIndexClsself._index=IndexCls(self._core,self._cmd_group)returnself._index@propertydefnidcsi(self):"""nidcsi commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_nidcsi'):from.NidcsiimportNidcsiClsself._nidcsi=NidcsiCls(self._core,self._cmd_group)returnself._nidcsi@propertydefphich(self):"""phich commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_phich'):from.PhichimportPhichClsself._phich=PhichCls(self._core,self._cmd_group)returnself._phich@propertydefpoffset(self):"""poffset commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_poffset'):from.PoffsetimportPoffsetClsself._poffset=PoffsetCls(self._core,self._cmd_group)returnself._poffset@propertydefpstart(self):"""pstart commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_pstart'):from.PstartimportPstartClsself._pstart=PstartCls(self._core,self._cmd_group)returnself._pstart@propertydefscIndex(self):"""scIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_scIndex'):from.ScIndeximportScIndexClsself._scIndex=ScIndexCls(self._core,self._cmd_group)returnself._scIndex@propertydefspsConf(self):"""spsConf commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_spsConf'):from.SpsConfimportSpsConfClsself._spsConf=SpsConfCls(self._core,self._cmd_group)returnself._spsConf@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydeftdelay(self):"""tdelay commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_tdelay'):from.TdelayimportTdelayClsself._tdelay=TdelayCls(self._core,self._cmd_group)returnself._tdelay@propertydefudConf(self):"""udConf commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_udConf'):from.UdConfimportUdConfClsself._udConf=UdConfCls(self._core,self._cmd_group)returnself._udConfdefclone(self)->'CellCls':"""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=CellCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group