Skip to content

SystemStirShakenCallerIdDispositionMappingGetRequest

Bases: OCIRequest

Request to get the Caller Id Disposition mapping.

The response is either SystemStirShakenCallerIdDispositionMappingGetResponse or ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemStirShakenCallerIdDispositionMappingGetRequest(OCIRequest):
    """Request to get the Caller Id Disposition mapping.

        The response is either SystemStirShakenCallerIdDispositionMappingGetResponse or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemStirShakenCallerIdDispositionMappingModifyRequest. Contains a table of Caller Id Disposition mapping. The column headings are: "Verstat", "Attestation", "Disposition".

Attributes:

caller_id_disposition_mapping_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemStirShakenCallerIdDispositionMappingGetResponse(OCIDataResponse):
    """Response to SystemStirShakenCallerIdDispositionMappingModifyRequest.
        Contains a table of Caller Id Disposition mapping.
        The column headings are: \"Verstat\", \"Attestation\", \"Disposition\".

    Attributes:

        caller_id_disposition_mapping_table (OCITable):

    """

    caller_id_disposition_mapping_table: OCITable = field(
        metadata={"alias": "callerIdDispositionMappingTable"}
    )

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 SystemStirShakenCallerIdDispositionMappingGetRequest

client = Client()

command = SystemStirShakenCallerIdDispositionMappingGetRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemStirShakenCallerIdDispositionMappingGetRequest")

print(response)