Skip to content

NetworkClassOfServiceCommunicationBarringProfile

Bases: OCIType

Communication Barring Profile defined as part of the Network Class Of Service. There can be only one primary profile within a Network Class Of Service.

Attributes:

name (str):

is_primary (bool):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class NetworkClassOfServiceCommunicationBarringProfile(OCIType):
    """Communication Barring Profile defined as part of the Network Class
        Of Service. There can be only one primary profile within a Network
        Class Of Service.

    Attributes:

        name (str):

        is_primary (bool):

    """

    name: str = field(metadata={"alias": "name"})

    is_primary: bool = field(metadata={"alias": "isPrimary"})