Source code for RsCmwGsmSig.Implementations.Configure_.Connection_.Cswitched_.Amr_.Threshold

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Threshold: """Threshold commands group definition. 6 total commands, 2 Sub-groups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("threshold", core, parent) @property def nb(self): """nb commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_nb'): from .Threshold_.Nb import Nb self._nb = Nb(self._core, self._base) return self._nb @property def wb(self): """wb commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_wb'): from .Threshold_.Wb import Wb self._wb = Wb(self._core, self._base) return self._wb def clone(self) -> 'Threshold': """Clones the group by creating new object from it and its whole existing sub-groups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = Threshold(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group