Skip to content

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
@dataclass(kw_only=True)
class SystemCommunicationBarringAlternateCallIndicatorGetListRequest(OCIRequest):
    """Get all the Communication Barring Alternate Call Indicator defined
        in the system. The response is either a SystemCommunicationBarringAlternateCallIndicatorGetListResponse or an ErrorResponse.

    Attributes:

    """

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
@dataclass(kw_only=True)
class SystemCommunicationBarringAlternateCallIndicatorGetListResponse(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):

    """

    alternate_call_indicator_table: OCITable = field(
        metadata={"alias": "alternateCallIndicatorTable"}
    )

Bases: OCIResponse

Source code in src/mercury_ocip_fast/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

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)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemCommunicationBarringAlternateCallIndicatorGetListRequest")

print(response)