Skip to content

ProfileAndServiceCallWaitingInfo

Bases: OCIType

This is the configuration parameters for Call Transfer service

Attributes:

is_active (bool):

disable_calling_line_id_delivery (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceCallWaitingInfo(OCIType):
    """This is the configuration parameters for Call Transfer service

    Attributes:

        is_active (bool):

        disable_calling_line_id_delivery (bool):

    """

    is_active: bool = field(metadata={"alias": "isActive"})

    disable_calling_line_id_delivery: bool = field(
        metadata={"alias": "disableCallingLineIdDelivery"}
    )