GroupRoutePointForcedForwardingGetRequest20
Bases: OCIRequest
Get a route point's forced forwarding settings. The response is either a GroupRoutePointForcedForwardingGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointForcedForwardingGetRequest20.
Attributes:
is_active (bool):
forward_to_phone_number (Optional[str]):
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_fast/commands/commands.py
128404 128405 128406 128407 128408 128409 128410 128411 128412 128413 128414 128415 128416 128417 128418 128419 128420 128421 128422 128423 128424 128425 128426 128427 128428 128429 128430 128431 128432 128433 128434 128435 128436 128437 128438 128439 128440 128441 128442 128443 128444 128445 128446 128447 128448 128449 128450 128451 128452 128453 128454 128455 128456 128457 128458 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupRoutePointForcedForwardingGetRequest20
client = Client()
command = GroupRoutePointForcedForwardingGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)