SystemCallCenterEnhancedReportingScheduledTaskParametersModifyRequest
Bases: OCIRequest
Modify the system settings for the call center enhanced reporting scheduling tasks. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
scheduled_report_search_interval_minutes (Optional[int]):
maximum_scheduled_reports_per_interval (Optional[int]):
delete_scheduled_report_days_after_completion (Optional[int]):
call_center_event_mode (Optional[str]):
use_dialed_address_for_remote_number (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCallCenterEnhancedReportingScheduledTaskParametersModifyRequest
client = Client()
command = SystemCallCenterEnhancedReportingScheduledTaskParametersModifyRequest(
scheduled_report_search_interval_minutes=...,
maximum_scheduled_reports_per_interval=...,
delete_scheduled_report_days_after_completion=...,
call_center_event_mode=...,
use_dialed_address_for_remote_number=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemCallCenterEnhancedReportingScheduledTaskParametersModifyRequest",
scheduled_report_search_interval_minutes=...,
maximum_scheduled_reports_per_interval=...,
delete_scheduled_report_days_after_completion=...,
call_center_event_mode=...,
use_dialed_address_for_remote_number=...,
)
print(response)