Skip to content

CommPilotExpressAvailableOutOfOffice

Bases: OCIType

CommPilot Express Available Out Of Office Configuration used in the context of a get.

Attributes:

incoming_calls (CommPilotExpressRedirection):

incoming_call_notify (CommPilotExpressEmailNotify):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CommPilotExpressAvailableOutOfOffice(OCIType):
    """CommPilot Express Available Out Of Office Configuration used in the context of a get.

    Attributes:

        incoming_calls (CommPilotExpressRedirection):

        incoming_call_notify (CommPilotExpressEmailNotify):

    """

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

    incoming_call_notify: CommPilotExpressEmailNotify = field(
        metadata={"alias": "incomingCallNotify"}
    )