Bases: OCIType
A list of communication barring profiles that replaces a previously configured list. By convention, an element of this type may be set nil to clear the list.
Attributes:
profile_name (List[str]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class CommunicationBarringProfileReplacementList(OCIType):
"""A list of communication barring profiles that replaces a previously configured list.
By convention, an element of this type may be set nil to clear the list.
Attributes:
profile_name (List[str]):
"""
profile_name: List[str] = field(metadata={"alias": "profileName"})
|