SystemRoutingGetTranslationListRequest
Bases: OCIRequest
Request to get the system digit routing table. The response is either a SystemRoutingGetTranslationListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRoutingGetTranslationListRequest. The column headings are "Routing Digits" and "Route".
Attributes:
routing_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemRoutingGetTranslationListRequest
client = Client()
command = SystemRoutingGetTranslationListRequest()
response = client.command(command)
print(response)