GroupRoutePointHolidayServiceModifyRequest20
Bases: OCIRequest
Modify a route point's holiday service settings. Only Group and Enterprise level schedules are accepted. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
service_user_id (str):
action (Optional[str]):
holiday_schedule (Optional[Nillable[HolidaySchedule]]):
transfer_phone_number (Optional[Nillable[str]]):
play_announcement_before_action (Optional[bool]):
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_fast/commands/commands.py
54569 54570 54571 54572 54573 54574 54575 54576 54577 54578 54579 54580 54581 54582 54583 54584 54585 54586 54587 54588 54589 54590 54591 54592 54593 54594 54595 54596 54597 54598 54599 54600 54601 54602 54603 54604 54605 54606 54607 54608 54609 54610 54611 54612 54613 54614 54615 54616 54617 54618 54619 54620 54621 54622 54623 54624 54625 54626 54627 54628 54629 54630 54631 54632 54633 54634 54635 54636 54637 54638 54639 54640 54641 54642 54643 54644 54645 54646 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupRoutePointHolidayServiceModifyRequest20
client = Client()
command = GroupRoutePointHolidayServiceModifyRequest20(
service_user_id=...,
action=...,
holiday_schedule=...,
transfer_phone_number=...,
play_announcement_before_action=...,
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_fast.client import Client
client = Client()
response = client.raw_command("GroupRoutePointHolidayServiceModifyRequest20",
service_user_id=...,
action=...,
holiday_schedule=...,
transfer_phone_number=...,
play_announcement_before_action=...,
audio_message_selection=...,
audio_url_list=...,
audio_file_list=...,
video_message_selection=...,
video_url_list=...,
video_file_list=...,
)
print(response)