GroupRoutePointHolidayServiceGetRequest20
Bases: OCIRequest
Get a route point's holiday service settings. The response is either a GroupRoutePointHolidayServiceGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointHolidayServiceGetRequest20.
Attributes:
action (str):
holiday_schedule (Optional[HolidaySchedule]):
transfer_phone_number (Optional[str]):
play_announcement_before_action (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
128756 128757 128758 128759 128760 128761 128762 128763 128764 128765 128766 128767 128768 128769 128770 128771 128772 128773 128774 128775 128776 128777 128778 128779 128780 128781 128782 128783 128784 128785 128786 128787 128788 128789 128790 128791 128792 128793 128794 128795 128796 128797 128798 128799 128800 128801 128802 128803 128804 128805 128806 128807 128808 128809 128810 128811 128812 128813 128814 128815 128816 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupRoutePointHolidayServiceGetRequest20
client = Client()
command = GroupRoutePointHolidayServiceGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)