Skip to content

ProfileAndServiceDirectedCallPickupWithBargeInInfo

Bases: OCIType

This is the configuration parameters for Directed Call Pickup With Barge In service

Attributes:

enable_barge_in_warning_tone (bool):

enable_automatic_target_selection (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceDirectedCallPickupWithBargeInInfo(OCIType):
    """This is the configuration parameters for Directed Call Pickup With Barge In service

    Attributes:

        enable_barge_in_warning_tone (bool):

        enable_automatic_target_selection (bool):

    """

    enable_barge_in_warning_tone: bool = field(
        metadata={"alias": "enableBargeInWarningTone"}
    )

    enable_automatic_target_selection: bool = field(
        metadata={"alias": "enableAutomaticTargetSelection"}
    )