SystemSystemServiceDnGetUsageListRequest
Bases: OCIRequest
Request a list of System Service DN utilization. The response is either SystemSystemServiceDnGetUsageListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSystemServiceDnGetUsageListRequest. The table columns are: "Phone Number", "Id", "Name", and "System Service". The possible values for "System Service" is "System Voice Portal".
Attributes:
dn_utilization_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 SystemSystemServiceDnGetUsageListRequest
client = Client()
command = SystemSystemServiceDnGetUsageListRequest()
response = client.command(command)
print(response)