Bases: OCIType
A list of Communication Barring Incoming Rules that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.
Attributes:
rule (List[CommunicationBarringIncomingRule19sp1]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementCommunicationBarringIncomingRuleList19sp1(OCIType):
"""A list of Communication Barring Incoming Rules that replaces a
previously configured list. By convention, an element of this type
may be set nill to clear the list.
Attributes:
rule (List[CommunicationBarringIncomingRule19sp1]):
"""
rule: List[CommunicationBarringIncomingRule19sp1] = field(
metadata={"alias": "rule"}
)
|