SystemCommunicationBarringCallTypeGetListRequest
Bases: OCIRequest
Get all the Communication Barring Call Types defined in the system. The response is either a SystemCommunicationBarringCallTypeGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to a SystemCommunicationBarringCallTypeGetListRequest. Contains a table with one row per Communication Barring Call Type. The table column headings are: "Call Type" and "Network Server Call Type".
Attributes:
call_type_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 SystemCommunicationBarringCallTypeGetListRequest
client = Client()
command = SystemCommunicationBarringCallTypeGetListRequest()
response = client.command(command)
print(response)