Bases: OCIType
A list of Communication Barring CallMeNow 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[CommunicationBarringCallMeNowRule]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementCommunicationBarringCallMeNowRuleList(OCIType):
"""A list of Communication Barring CallMeNow 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[CommunicationBarringCallMeNowRule]):
"""
rule: List[CommunicationBarringCallMeNowRule] = field(metadata={"alias": "rule"})
|