Skip to content

CallCenterReportIntervalDates

Bases: OCIType

The call center enhanced reporting report interval, using dates.

Attributes:

start_date (int):

start_time (HourMinute):

end_date (int):

end_time (HourMinute):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CallCenterReportIntervalDates(OCIType):
    """The call center enhanced reporting report interval, using dates.

    Attributes:

        start_date (int):

        start_time (HourMinute):

        end_date (int):

        end_time (HourMinute):

    """

    start_date: int = field(metadata={"alias": "startDate"})

    start_time: HourMinute = field(metadata={"alias": "startTime"})

    end_date: int = field(metadata={"alias": "endDate"})

    end_time: HourMinute = field(metadata={"alias": "endTime"})