SystemWebexMeetingsCallTypeGetListRequest
Bases: OCIRequest
Get all the Webex Meetings call processing entries defined in the system. The response is either a SystemWebexMeetingsCallTypeGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to a SystemWebexMeetingsCallTypeGetListRequest. Contains a table with one row per Webex Meetings call type entry. The table column headings are: "Name", "NS Call Type", "Enforce NS Charge Field" and "Process As Internal For SAC-Subscriber".
Attributes:
call_type_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemWebexMeetingsCallTypeGetListRequest
client = Client()
command = SystemWebexMeetingsCallTypeGetListRequest()
response = client.command(command)
print(response)