Skip to content

SystemCallCenterEnhancedReportingGetRequest

Bases: OCIRequest

Request to get the call center enhanced reporting system settings. The response is either a SystemCallCenterEnhancedReportingGetResponse or an ErrorResponse.

Attributes:

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

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemCallCenterEnhancedReportingGetRequest.

Attributes:

archive_reports (bool):

report_application_url (Optional[str]):

repository_application_url (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemCallCenterEnhancedReportingGetResponse(OCIDataResponse):
    """Response to SystemCallCenterEnhancedReportingGetRequest.

    Attributes:

        archive_reports (bool):

        report_application_url (Optional[str]):

        repository_application_url (Optional[str]):

    """

    archive_reports: bool = field(metadata={"alias": "archiveReports"})

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

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

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 SystemCallCenterEnhancedReportingGetRequest

client = Client()

command = SystemCallCenterEnhancedReportingGetRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemCallCenterEnhancedReportingGetRequest")

print(response)