SystemCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest
Bases: OCIRequest
Request to get all the call center reporting scheduled report in the system that uses a given system level report template. The response is either a SystemCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListResponse or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest. Contains a table with column headings: "Schedule Name", "Organization Type", "Service Provider Id", "Group Id", "Created By", "Created By Supervisor", and "Is Active". The "Organization Type" is either "Service Provider" or "Enterprise". The "Created By" can be either "Administrator" or user id if created by supervisor. The possible values for "Created By Supervisor" are "true" and "false".
Attributes:
schedule_report_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest
client = Client()
command = SystemCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest(
name=...,
)
response = client.command(command)
print(response)