SystemBroadWorksMobilityGeographicalPoolGetListRequest
Bases: OCIRequest
Get a list of geographical pools defined in the system. If countryCode is set, return the IMRN pools associated with the country code. The response is either SystemBroadWorksMobilityGeographicalPoolGetListResponse or ErrorResponse.
Attributes:
country_code (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemBroadWorksMobilityGeographicalPoolGetListRequest. Contains a table with column headings: "Pool", "Country Code", "Is Default", "Description".
Attributes:
geographical_pool_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 SystemBroadWorksMobilityGeographicalPoolGetListRequest
client = Client()
command = SystemBroadWorksMobilityGeographicalPoolGetListRequest(
country_code=...,
)
response = client.command(command)
print(response)