GroupCallCenterStrandedCallGetRequest20
Bases: OCIRequest
Get a call center's stranded call settings. The response is either a GroupCallCenterStrandedCallGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterStrandedCallGetRequest20.
Attributes:
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
123642 123643 123644 123645 123646 123647 123648 123649 123650 123651 123652 123653 123654 123655 123656 123657 123658 123659 123660 123661 123662 123663 123664 123665 123666 123667 123668 123669 123670 123671 123672 123673 123674 123675 123676 123677 123678 123679 123680 123681 123682 123683 123684 123685 123686 123687 123688 123689 123690 123691 123692 123693 123694 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterStrandedCallGetRequest20
client = Client()
command = GroupCallCenterStrandedCallGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)