Skip to content

CallCenterReportSchedule

Bases: OCIType

A schedule for call center enhanced reporting scheduled report. It can either be a fixed time schedule or recurring schedule

Attributes:

schedule_time (Optional[CallCenterReportScheduleTime]):

recurrence (Optional[CallCenterReportScheduleRecurrence]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CallCenterReportSchedule(OCIType):
    """A schedule for call center enhanced reporting scheduled report. It can either be a fixed time schedule
        or recurring schedule

    Attributes:

        schedule_time (Optional[CallCenterReportScheduleTime]):

        recurrence (Optional[CallCenterReportScheduleRecurrence]):

    """

    schedule_time: Optional[CallCenterReportScheduleTime] = field(
        default=None, metadata={"alias": "scheduleTime"}
    )

    recurrence: Optional[CallCenterReportScheduleRecurrence] = field(
        default=None, metadata={"alias": "recurrence"}
    )