GroupCallCenterQueueStatusNotificationGetRequest
Bases: OCIRequest
Get the status configuration for a given call center. The response is either a GroupCallCenterQueueStatusNotificationGetResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterQueueStatusNotificationGetRequest. The response contains the call center status configuration information.
Attributes:
enable_queue_status_notification (bool):
enable_queue_depth_threshold (bool):
enable_waiting_time_threshold (bool):
number_of_calls_threshold (int):
waiting_time_of_calls_threshold (int):
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 GroupCallCenterQueueStatusNotificationGetRequest
client = Client()
command = GroupCallCenterQueueStatusNotificationGetRequest(
service_user_id=...,
)
response = client.command(command)
print(response)