Skip to content

CommPilotExpressUnavailable

Bases: OCIType

CommPilot Express Unavailable Configuration used in the context of a get.

Attributes:

incoming_calls (CommPilotExpressRedirectionWithException):

voice_mail_greeting (str):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CommPilotExpressUnavailable(OCIType):
    """CommPilot Express Unavailable Configuration used in the context of a get.

    Attributes:

        incoming_calls (CommPilotExpressRedirectionWithException):

        voice_mail_greeting (str):

    """

    incoming_calls: CommPilotExpressRedirectionWithException = field(
        metadata={"alias": "incomingCalls"}
    )

    voice_mail_greeting: str = field(metadata={"alias": "voiceMailGreeting"})