Skip to content

SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25

Bases: OCIRequest

Request to get the system settings for the call center enhanced reporting scheduling tasks. The response is either a SystemCallCenterEnhancedReportingScheduledTaskParametersGetResponse25 or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25(OCIRequest):
    """Request to get the system settings for the call center enhanced reporting scheduling tasks.
        The response is either a SystemCallCenterEnhancedReportingScheduledTaskParametersGetResponse25 or an ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25.

Attributes:

scheduled_report_search_interval_minutes (int):

maximum_scheduled_reports_per_interval (int):

delete_scheduled_report_days_after_completion (int):

call_center_event_mode (str):

use_dialed_address_for_remote_number (bool):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemCallCenterEnhancedReportingScheduledTaskParametersGetResponse25(
    OCIDataResponse
):
    """Response to SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25.

    Attributes:

        scheduled_report_search_interval_minutes (int):

        maximum_scheduled_reports_per_interval (int):

        delete_scheduled_report_days_after_completion (int):

        call_center_event_mode (str):

        use_dialed_address_for_remote_number (bool):

    """

    scheduled_report_search_interval_minutes: int = field(
        metadata={"alias": "scheduledReportSearchIntervalMinutes"}
    )

    maximum_scheduled_reports_per_interval: int = field(
        metadata={"alias": "maximumScheduledReportsPerInterval"}
    )

    delete_scheduled_report_days_after_completion: int = field(
        metadata={"alias": "deleteScheduledReportDaysAfterCompletion"}
    )

    call_center_event_mode: str = field(metadata={"alias": "callCenterEventMode"})

    use_dialed_address_for_remote_number: bool = field(
        metadata={"alias": "useDialedAddressForRemoteNumber"}
    )

Bases: OCIResponse

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

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25

client = Client()

command = SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemCallCenterEnhancedReportingScheduledTaskParametersGetRequest25")

print(response)