GroupCallCenterStrandedCallModifyRequest20
Bases: OCIRequest
Modify a call center's stranded call settings. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
service_user_id (str):
action (Optional[str]):
transfer_phone_number (Optional[Nillable[str]]):
audio_message_selection (Optional[str]):
audio_url_list (Optional[CallCenterAnnouncementURLListModify]):
audio_file_list (Optional[CallCenterAnnouncementFileListModify20]):
video_message_selection (Optional[str]):
video_url_list (Optional[CallCenterAnnouncementURLListModify]):
video_file_list (Optional[CallCenterAnnouncementFileListModify20]):
Source code in src/mercury_ocip/commands/commands.py
40444 40445 40446 40447 40448 40449 40450 40451 40452 40453 40454 40455 40456 40457 40458 40459 40460 40461 40462 40463 40464 40465 40466 40467 40468 40469 40470 40471 40472 40473 40474 40475 40476 40477 40478 40479 40480 40481 40482 40483 40484 40485 40486 40487 40488 40489 40490 40491 40492 40493 40494 40495 40496 40497 40498 40499 40500 40501 40502 40503 40504 40505 40506 40507 40508 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterStrandedCallModifyRequest20
client = Client()
command = GroupCallCenterStrandedCallModifyRequest20(
service_user_id=...,
action=...,
transfer_phone_number=...,
audio_message_selection=...,
audio_url_list=...,
audio_file_list=...,
video_message_selection=...,
video_url_list=...,
video_file_list=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupCallCenterStrandedCallModifyRequest20",
service_user_id=...,
action=...,
transfer_phone_number=...,
audio_message_selection=...,
audio_url_list=...,
audio_file_list=...,
video_message_selection=...,
video_url_list=...,
video_file_list=...,
)
print(response)