GroupCallCenterStrandedCallUnavailableGetRequest20
Bases: OCIRequest
Get a call center's stranded calls - unavailable settings. The response is either a GroupCallCenterStrandedCallUnavailableGetResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterStrandedCallUnavailableGetRequest20.
Attributes:
condition_policy_on_number_of_agents_with_specified_unavailable_code (bool):
number_of_agents_with_specified_unavailable_code (Optional[int]):
agents_unavailable_code (Optional[str]):
action (str):
transfer_phone_number (Optional[str]):
audio_message_selection (Optional[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_fast/commands/commands.py
123697 123698 123699 123700 123701 123702 123703 123704 123705 123706 123707 123708 123709 123710 123711 123712 123713 123714 123715 123716 123717 123718 123719 123720 123721 123722 123723 123724 123725 123726 123727 123728 123729 123730 123731 123732 123733 123734 123735 123736 123737 123738 123739 123740 123741 123742 123743 123744 123745 123746 123747 123748 123749 123750 123751 123752 123753 123754 123755 123756 123757 123758 123759 123760 123761 123762 123763 123764 123765 123766 123767 123768 123769 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterStrandedCallUnavailableGetRequest20
client = Client()
command = GroupCallCenterStrandedCallUnavailableGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)