Skip to content

SystemVoiceMessageSummaryUpdateGetRequest25

Bases: OCIRequest

Requests system voice mail message summary update parameter settings. The response is either SystemVoiceMessageSummaryUpdateGetResponse25 or ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemVoiceMessageSummaryUpdateGetRequest25(OCIRequest):
    """Requests system voice mail message summary update parameter settings.
        The response is either SystemVoiceMessageSummaryUpdateGetResponse25 or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemVoiceMessageSummaryUpdateGetRequest25.

Attributes:

send_saved_and_urgent_mwi_on_notification (bool):

send_message_summary_update_on_register (bool):

min_time_between_mwi_on_register (int):

allow_multiple_users_per_account (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemVoiceMessageSummaryUpdateGetResponse25(OCIDataResponse):
    """Response to SystemVoiceMessageSummaryUpdateGetRequest25.

    Attributes:

        send_saved_and_urgent_mwi_on_notification (bool):

        send_message_summary_update_on_register (bool):

        min_time_between_mwi_on_register (int):

        allow_multiple_users_per_account (bool):

    """

    send_saved_and_urgent_mwi_on_notification: bool = field(
        metadata={"alias": "sendSavedAndUrgentMWIOnNotification"}
    )

    send_message_summary_update_on_register: bool = field(
        metadata={"alias": "sendMessageSummaryUpdateOnRegister"}
    )

    min_time_between_mwi_on_register: int = field(
        metadata={"alias": "minTimeBetweenMWIOnRegister"}
    )

    allow_multiple_users_per_account: bool = field(
        metadata={"alias": "allowMultipleUsersPerAccount"}
    )

Bases: OCIResponse

Source code in src/mercury_ocip_fast/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

Example Usage

from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemVoiceMessageSummaryUpdateGetRequest25

client = Client()

command = SystemVoiceMessageSummaryUpdateGetRequest25()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemVoiceMessageSummaryUpdateGetRequest25")

print(response)