GroupCallCenterOverflowGetRequest20
Bases: OCIRequest
Get a call center's overflow settings. The response is either a GroupCallCenterOverflowGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterOverflowGetRequest20.
Attributes:
action (str):
transfer_phone_number (Optional[str]):
overflow_after_timeout (bool):
timeout_seconds (int):
play_announcement_before_overflow_processing (bool):
audio_message_selection (str):
audio_url_list (Optional[CallCenterAnnouncementURLList]):
audio_file_list (Optional[CallCenterAnnouncementFileListRead20]):
video_message_selection (Optional[str]):
video_url_list (Optional[CallCenterAnnouncementURLList]):
video_file_list (Optional[CallCenterAnnouncementFileListRead20]):
Source code in src/mercury_ocip/commands/commands.py
123381 123382 123383 123384 123385 123386 123387 123388 123389 123390 123391 123392 123393 123394 123395 123396 123397 123398 123399 123400 123401 123402 123403 123404 123405 123406 123407 123408 123409 123410 123411 123412 123413 123414 123415 123416 123417 123418 123419 123420 123421 123422 123423 123424 123425 123426 123427 123428 123429 123430 123431 123432 123433 123434 123435 123436 123437 123438 123439 123440 123441 123442 123443 123444 123445 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterOverflowGetRequest20
client = Client()
command = GroupCallCenterOverflowGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)