Skip to content

SystemEnhancedCallLogsGetRequest22V2

Bases: OCIRequest

Request the system level data associated with Enhanced Call Logs. The response is either a SystemEnhancedCallLogsGetResponse22V2 or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemEnhancedCallLogsGetRequest22V2(OCIRequest):
    """Request the system level data associated with Enhanced Call Logs. The response is either a
        SystemEnhancedCallLogsGetResponse22V2 or an ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemEnhancedCallLogsGetRequest22V2.

Attributes:

default_schema (Optional[str]):

max_non_paged_response_size (int):

ecl_query_application_url (Optional[str]):

ecl_query_data_repository_url (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemEnhancedCallLogsGetResponse22V2(OCIDataResponse):
    """Response to SystemEnhancedCallLogsGetRequest22V2.

    Attributes:

        default_schema (Optional[str]):

        max_non_paged_response_size (int):

        ecl_query_application_url (Optional[str]):

        ecl_query_data_repository_url (Optional[str]):

    """

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

    max_non_paged_response_size: int = field(
        metadata={"alias": "maxNonPagedResponseSize"}
    )

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

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

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 SystemEnhancedCallLogsGetRequest22V2

client = Client()

command = SystemEnhancedCallLogsGetRequest22V2()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemEnhancedCallLogsGetRequest22V2")

print(response)