SystemSystemServiceDnGetSummaryListRequest
Bases: OCIRequest
Request a summary table of all System Service DNs. The response is either SystemSystemServiceDnGetSummaryListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSystemServiceDnGetSummaryListRequest. The column headings are "Phone Numbers" and "Assigned". The possible values for "Assigned" are true, false.
Attributes:
dn_summary_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 SystemSystemServiceDnGetSummaryListRequest
client = Client()
command = SystemSystemServiceDnGetSummaryListRequest()
response = client.command(command)
print(response)