SystemCallTypeGetMappingListRequest
Bases: OCIRequest
Get a list of system call type mappings. The response is either SystemCallTypeGetMappingListResponse or ErrorResponse.
Attributes:
country_code (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallTypeGetMappingListRequest. The table columns are: "Country Code", "Digit Map", "Call Type" and "Ignore AS Emergency Route". The following column is returned only in AS Mode: "Ignore AS Emergency Route"
Attributes:
call_type_mapping (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallTypeGetMappingListRequest
client = Client()
command = SystemCallTypeGetMappingListRequest(
country_code=...,
)
response = client.command(command)
print(response)