GroupRoutePointOverflowGetRequest20
Bases: OCIRequest
Get a route point's overflow settings. The response is either a GroupRoutePointOverflowGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointOverflowGetRequest20.
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_fast/commands/commands.py
128926 128927 128928 128929 128930 128931 128932 128933 128934 128935 128936 128937 128938 128939 128940 128941 128942 128943 128944 128945 128946 128947 128948 128949 128950 128951 128952 128953 128954 128955 128956 128957 128958 128959 128960 128961 128962 128963 128964 128965 128966 128967 128968 128969 128970 128971 128972 128973 128974 128975 128976 128977 128978 128979 128980 128981 128982 128983 128984 128985 128986 128987 128988 128989 128990 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupRoutePointOverflowGetRequest20
client = Client()
command = GroupRoutePointOverflowGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)