Skip to content

ProfileAndServiceCommunicationBarringUserControlInfo

Bases: OCIType

This is the configuration parameters for Communication Barring User Control service

        profileTable has column headings: "Name", "Code", "Activated" and "Primary".

Attributes:

lockout_status (bool):

profile_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceCommunicationBarringUserControlInfo(OCIType):
    """This is the configuration parameters for Communication Barring User Control service

                profileTable has column headings: \"Name\", \"Code\", \"Activated\" and \"Primary\".

    Attributes:

        lockout_status (bool):

        profile_table (OCITable):

    """

    lockout_status: bool = field(metadata={"alias": "lockoutStatus"})

    profile_table: OCITable = field(metadata={"alias": "profileTable"})