GroupAutoAttendantSubmenuGetUsageListRequest
Bases: OCIRequest
Get a list of Auto Attendant Business Hours Menu,After Hours Menu,Holiday Menu and Submenus that use this submenu. The response is either GroupAutoAttendantSubmenuGetUsageListResponse or ErrorResponse. This request is only valid for Standard auto attendants.
Attributes:
service_user_id (str):
submenu_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupAutoAttendantSubmenuGetUsageListRequest. Contains a table with column headings: "Type" and "Submenu ID".
The "Type" Column will contain one of the following: Business Hours Menu,
After Hours Menu, Holiday Menu or Submenu.
The "Submenu ID" Column will be left blank when the "Type" Column contains one
of the base menu types (Business Hours Menu, After Hours Menu or Holiday Menu),
and will contain the Submenu ID when the "Type" Column contains type Submenu.
Attributes:
submenu_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 GroupAutoAttendantSubmenuGetUsageListRequest
client = Client()
command = GroupAutoAttendantSubmenuGetUsageListRequest(
service_user_id=...,
submenu_id=...,
)
response = client.command(command)
print(response)