Skip to content

CommPilotExpressRedirection

Bases: OCIType

CommPilot Express type to transfer to voice Mail or forward to a number used in the context of a get.

Attributes:

action (str):

forwarding_phone_number (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CommPilotExpressRedirection(OCIType):
    """CommPilot Express type to transfer to voice Mail or forward to a number
        used in the context of a get.

    Attributes:

        action (str):

        forwarding_phone_number (Optional[str]):

    """

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

    forwarding_phone_number: Optional[str] = field(
        default=None, metadata={"alias": "forwardingPhoneNumber"}
    )