Skip to content

VoicePortalLoginMenuKeysModifyEntry

Bases: OCIType

The voice portal voice portal login menu keys modify entry.

Attributes:

access_using_other_mailbox_id (Optional[Nillable[str]]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class VoicePortalLoginMenuKeysModifyEntry(OCIType):
    """The voice portal voice portal login menu keys modify entry.

    Attributes:

        access_using_other_mailbox_id (Optional[Nillable[str]]):

    """

    access_using_other_mailbox_id: Optional[Nillable[str]] = field(
        default=None, metadata={"alias": "accessUsingOtherMailboxId"}
    )

    def __post_init__(self):
        nillable_fields = ["access_using_other_mailbox_id"]
        for field_name in nillable_fields:
            value = getattr(self, field_name)
            if value == "" or value == "None":
                object.__setattr__(self, field_name, OCINil)