Skip to content

ProfileAndServiceCallForwardAlwaysInfo

Bases: OCIType

This is the configuration parameters for Call Forward Always service

Attributes:

is_active (bool):

forward_to_phone_number (Optional[str]):

is_ring_splash_active (bool):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceCallForwardAlwaysInfo(OCIType):
    """This is the configuration parameters for Call Forward Always service

    Attributes:

        is_active (bool):

        forward_to_phone_number (Optional[str]):

        is_ring_splash_active (bool):

    """

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

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

    is_ring_splash_active: bool = field(metadata={"alias": "isRingSplashActive"})