Source code for RsCMX_Signaling.Implementations.Configure.Signaling.Lte.Cell.Power.Downlink

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class DownlinkCls: """Downlink commands group definition. 13 total commands, 5 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("downlink", core, parent) @property def rsepre(self): """rsepre commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_rsepre'): from .Rsepre import RsepreCls self._rsepre = RsepreCls(self._core, self._cmd_group) return self._rsepre @property def maximum(self): """maximum commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_maximum'): from .Maximum import MaximumCls self._maximum = MaximumCls(self._core, self._cmd_group) return self._maximum @property def reference(self): """reference commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_reference'): from .Reference import ReferenceCls self._reference = ReferenceCls(self._core, self._cmd_group) return self._reference @property def offset(self): """offset commands group. 6 Sub-classes, 0 commands.""" if not hasattr(self, '_offset'): from .Offset import OffsetCls self._offset = OffsetCls(self._core, self._cmd_group) return self._offset @property def ocng(self): """ocng commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_ocng'): from .Ocng import OcngCls self._ocng = OcngCls(self._core, self._cmd_group) return self._ocng 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