GroupCallCenterForcedForwardingGetRequest20
Bases: OCIRequest
Get a call center's forced forwarding settings. The response is either a GroupCallCenterForcedForwardingGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterForcedForwardingGetRequest20.
Attributes:
is_active (bool):
forward_to_phone_number (Optional[str]):
allow_enable_via_fac (bool):
play_announcement_before_forwarding (bool):
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/commands/commands.py
122150 122151 122152 122153 122154 122155 122156 122157 122158 122159 122160 122161 122162 122163 122164 122165 122166 122167 122168 122169 122170 122171 122172 122173 122174 122175 122176 122177 122178 122179 122180 122181 122182 122183 122184 122185 122186 122187 122188 122189 122190 122191 122192 122193 122194 122195 122196 122197 122198 122199 122200 122201 122202 122203 122204 122205 122206 122207 122208 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterForcedForwardingGetRequest20
client = Client()
command = GroupCallCenterForcedForwardingGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)