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