Skip to content

ProfileAndServiceCallForwardingNoAnswerInfo

Bases: OCIType

This is the configuration parameters for Call Forwarding No Answer service

Attributes:

is_active (bool):

forward_to_phone_number (Optional[str]):

number_of_rings (int):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceCallForwardingNoAnswerInfo(OCIType):
    """This is the configuration parameters for Call Forwarding No Answer service

    Attributes:

        is_active (bool):

        forward_to_phone_number (Optional[str]):

        number_of_rings (int):

    """

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

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

    number_of_rings: int = field(metadata={"alias": "numberOfRings"})