Source code for models.day_monthly_schedule_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class DayMonthlyScheduleEnum(object): """Implementation of the 'Day_MonthlySchedule' enum. Specifies the day of the week (such as 'kMonday') to start the Job Run. Used with day count to define the day in the month to start the Job Run. Specifies a day in a week such as 'kSunday', 'kMonday', etc. Attributes: KSUNDAY: TODO: type description here. KMONDAY: TODO: type description here. KTUESDAY: TODO: type description here. KWEDNESDAY: TODO: type description here. KTHURSDAY: TODO: type description here. KFRIDAY: TODO: type description here. KSATURDAY: TODO: type description here. """ KSUNDAY = 'kSunday' KMONDAY = 'kMonday' KTUESDAY = 'kTuesday' KWEDNESDAY = 'kWednesday' KTHURSDAY = 'kThursday' KFRIDAY = 'kFriday' KSATURDAY = 'kSaturday'