EnterpriseCallCenterEnhancedReportingScheduledReportModifyRequest
Bases: OCIRequest
Request to modify an enterprise level call center reporting scheduled report. The response is either a SuccessResponse or an ErrorResponse. The startDate element is adjusted to the first occurrence of the recurrent schedule that comes at or after startDate.
Attributes:
service_provider_id (str):
name (str):
new_name (Optional[str]):
description (Optional[Nillable[str]]):
schedule (Optional[CallCenterReportSchedule]):
sampling_period (Optional[str]):
start_day_of_week (Optional[str]):
report_time_zone (Optional[str]):
report_date_format (Optional[str]):
report_time_format (Optional[str]):
report_interval (Optional[CallCenterReportInterval]):
report_format (Optional[str]):
agent (Optional[CallCenterScheduledReportAgentSelection]):
call_center (Optional[CallCenterScheduledReportCallCenterSelection]):
dnis (Optional[CallCenterScheduledReportDNISSelection]):
call_completion_threshold_seconds (Optional[int]):
short_duration_threshold_seconds (Optional[int]):
service_level_threshold_seconds (Optional[CallCenterReportServiceLevelThresholdReplacementList]):
service_level_inclusions (Optional[CallCenterScheduledReportServiceLevelInclusionsModify]):
service_level_objective_percentage (Optional[Nillable[int]]):
abandoned_call_threshold_seconds (Optional[CallCenterReportAbandonedCallThresholdReplacementList]):
email_address (Optional[CallCenterReportReplacementEmailList]):
Source code in src/mercury_ocip_fast/commands/commands.py
28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import EnterpriseCallCenterEnhancedReportingScheduledReportModifyRequest
client = Client()
command = EnterpriseCallCenterEnhancedReportingScheduledReportModifyRequest(
service_provider_id=...,
name=...,
new_name=...,
description=...,
schedule=...,
sampling_period=...,
start_day_of_week=...,
report_time_zone=...,
report_date_format=...,
report_time_format=...,
report_interval=...,
report_format=...,
agent=...,
call_center=...,
dnis=...,
call_completion_threshold_seconds=...,
short_duration_threshold_seconds=...,
service_level_threshold_seconds=...,
service_level_inclusions=...,
service_level_objective_percentage=...,
abandoned_call_threshold_seconds=...,
email_address=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("EnterpriseCallCenterEnhancedReportingScheduledReportModifyRequest",
service_provider_id=...,
name=...,
new_name=...,
description=...,
schedule=...,
sampling_period=...,
start_day_of_week=...,
report_time_zone=...,
report_date_format=...,
report_time_format=...,
report_interval=...,
report_format=...,
agent=...,
call_center=...,
dnis=...,
call_completion_threshold_seconds=...,
short_duration_threshold_seconds=...,
service_level_threshold_seconds=...,
service_level_inclusions=...,
service_level_objective_percentage=...,
abandoned_call_threshold_seconds=...,
email_address=...,
)
print(response)