SystemPreferredCarrierGetListRequest
Bases: OCIRequest
Requests a table of all the carriers defined in the system. The response is either a SystemPreferredCarrierGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to a SystemPreferredCarrierGetListRequest. Contains a table with one row per carrier. The table columns are: "Carrier", "Country Code", "CIC", "Is Intra-Lata", "Is Inter-Lata", "Is International". The value in the "Is Intra-Lata", "Is Inter-Lata", and "Is International" columns is one of "true" or "false".
Attributes:
system_carrier_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 SystemPreferredCarrierGetListRequest
client = Client()
command = SystemPreferredCarrierGetListRequest()
response = client.command(command)
print(response)