GroupCallCenterHolidayServiceGetRequest20
Bases: OCIRequest
Get a call center's holiday service settings. The response is either a GroupCallCenterHolidayServiceGetResponse20 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterHolidayServiceGetRequest20.
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
123194 123195 123196 123197 123198 123199 123200 123201 123202 123203 123204 123205 123206 123207 123208 123209 123210 123211 123212 123213 123214 123215 123216 123217 123218 123219 123220 123221 123222 123223 123224 123225 123226 123227 123228 123229 123230 123231 123232 123233 123234 123235 123236 123237 123238 123239 123240 123241 123242 123243 123244 123245 123246 123247 123248 123249 123250 123251 123252 123253 123254 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterHolidayServiceGetRequest20
client = Client()
command = GroupCallCenterHolidayServiceGetRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)