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