Skip to content

SystemSubscriberGetCallProcessingParametersRequest18sp1

Bases: OCIRequest

Get the system call processing configuration for all subscribers The response is either a SystemSubscriberGetCallProcessingParametersResponse18sp1 or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemSubscriberGetCallProcessingParametersRequest18sp1(OCIRequest):
    """Get the system call processing configuration for all subscribers
        The response is either a SystemSubscriberGetCallProcessingParametersResponse18sp1
        or an ErrorResponse.

    Attributes:

    """

Responses

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 SystemSubscriberGetCallProcessingParametersRequest18sp1

client = Client()

command = SystemSubscriberGetCallProcessingParametersRequest18sp1()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemSubscriberGetCallProcessingParametersRequest18sp1")

print(response)