Skip to content

CommPilotExpressAvailableInOffice

Bases: OCIType

CommPilot Express Available In Office Settings.

Attributes:

additional_phone_number_to_ring (Optional[str]):

busy_setting (CommPilotExpressRedirection):

no_answer_setting (CommPilotExpressRedirection):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CommPilotExpressAvailableInOffice(OCIType):
    """CommPilot Express Available In Office Settings.

    Attributes:

        additional_phone_number_to_ring (Optional[str]):

        busy_setting (CommPilotExpressRedirection):

        no_answer_setting (CommPilotExpressRedirection):

    """

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

    busy_setting: CommPilotExpressRedirection = field(metadata={"alias": "busySetting"})

    no_answer_setting: CommPilotExpressRedirection = field(
        metadata={"alias": "noAnswerSetting"}
    )