Skip to content

SystemRoamingNetworkGetListRequest

Bases: OCIRequest

Get the list of all Roaming Networks. The response is either a SystemRoamingNetworkGetListResponse or an ErrorResponse.

Attributes:

response_size_limit (Optional[int]):

search_criteria_roaming_msc_address (Optional[List[SearchCriteriaRoamingMscAddress]]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemRoamingNetworkGetListRequest(OCIRequest):
    """Get the list of all Roaming Networks.
        The response is either a SystemRoamingNetworkGetListResponse or an ErrorResponse.

    Attributes:

        response_size_limit (Optional[int]):

        search_criteria_roaming_msc_address (Optional[List[SearchCriteriaRoamingMscAddress]]):

    """

    response_size_limit: Optional[int] = field(
        default=None, metadata={"alias": "responseSizeLimit"}
    )

    search_criteria_roaming_msc_address: Optional[
        List[SearchCriteriaRoamingMscAddress]
    ] = field(default=None, metadata={"alias": "searchCriteriaRoamingMscAddress"})

Responses

Bases: OCIDataResponse

Response to the SystemRoamingNetworkGetListRequest. Contains a table with columns: "MSC Address", "Network Translation Index".

Attributes:

roaming_network_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemRoamingNetworkGetListResponse(OCIDataResponse):
    """Response to the SystemRoamingNetworkGetListRequest.
        Contains a table with columns: \"MSC Address\", \"Network Translation Index\".

    Attributes:

        roaming_network_table (OCITable):

    """

    roaming_network_table: OCITable = field(metadata={"alias": "roamingNetworkTable"})

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 SystemRoamingNetworkGetListRequest

client = Client()

command = SystemRoamingNetworkGetListRequest(
    response_size_limit=...,
    search_criteria_roaming_msc_address=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemRoamingNetworkGetListRequest",
    response_size_limit=...,
    search_criteria_roaming_msc_address=...,
)

print(response)