GroupCallCenterComfortMessageBypassGetRequest20
Bases: OCIRequest
Get a call center's comfort message bypass settings. The response is either a GroupCallCenterComfortMessageBypassGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterComfortMessageBypassGetRequest20.
Attributes:
is_active (bool):
call_waiting_age_threshold_seconds (int):
play_announcement_after_ringing (bool):
ring_time_before_playing_announcement_seconds (int):
audio_message_selection (str):
audio_url_list (Optional[CallCenterAnnouncementURLList]):
audio_file_list (Optional[CallCenterAnnouncementFileListRead20]):
video_message_selection (str):
video_url_list (Optional[CallCenterAnnouncementURLList]):
video_file_list (Optional[CallCenterAnnouncementFileListRead20]):
Source code in src/mercury_ocip_fast/commands/commands.py
121638 121639 121640 121641 121642 121643 121644 121645 121646 121647 121648 121649 121650 121651 121652 121653 121654 121655 121656 121657 121658 121659 121660 121661 121662 121663 121664 121665 121666 121667 121668 121669 121670 121671 121672 121673 121674 121675 121676 121677 121678 121679 121680 121681 121682 121683 121684 121685 121686 121687 121688 121689 121690 121691 121692 121693 121694 121695 121696 121697 121698 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterComfortMessageBypassGetRequest20
client = Client()
command = GroupCallCenterComfortMessageBypassGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)