SystemVirtualOnNetCallTypeGetListRequest
Bases: OCIRequest
Get the list Virtual On-Net Call Types in the system. The response is either a SystemVirtualOnNetCallTypeGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemVirtualOnNetCallTypeGetListRequest. Contains a table with column headings: "Virtual On-Net Call Type Name", "Virtual On-Net Call Type CDR Value" in a row for each Virtual On-Net Call Type.
Attributes:
virtual_on_net_call_type_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 SystemVirtualOnNetCallTypeGetListRequest
client = Client()
command = SystemVirtualOnNetCallTypeGetListRequest()
response = client.command(command)
print(response)