Source code for RsSmbv.Implementations.Source.Bb.Eutra.Downlink.User.AsPy.Downlink

from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DownlinkCls: """Downlink commands group definition. 30 total commands, 6 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("downlink", core, parent) @property def afSeq(self): """afSeq commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_afSeq'): from .AfSeq import AfSeqCls self._afSeq = AfSeqCls(self._core, self._cmd_group) return self._afSeq @property def cell(self): """cell commands group. 12 Sub-classes, 2 commands.""" if not hasattr(self, '_cell'): from .Cell import CellCls self._cell = CellCls(self._core, self._cmd_group) return self._cell @property def indi(self): """indi commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_indi'): from .Indi import IndiCls self._indi = IndiCls(self._core, self._cmd_group) return self._indi @property def nhids(self): """nhids commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_nhids'): from .Nhids import NhidsCls self._nhids = NhidsCls(self._core, self._cmd_group) return self._nhids @property def nhtrans(self): """nhtrans commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_nhtrans'): from .Nhtrans import NhtransCls self._nhtrans = NhtransCls(self._core, self._cmd_group) return self._nhtrans @property def skProcess(self): """skProcess commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_skProcess'): from .SkProcess import SkProcessCls self._skProcess = SkProcessCls(self._core, self._cmd_group) return self._skProcess def clone(self) -> 'DownlinkCls': """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 = DownlinkCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group