Source code for models_v2.day_enum

# -*- coding: utf-8 -*-

[docs]class DayEnum(object): """Implementation of the 'Day' enum. Specifies a day in the week when no new Protection Group Runs should be started such as 'Sunday'. If not set, the time range applies to all days. Specifies a day in a week such as 'Sunday', 'Monday', etc. Attributes: SUNDAY: TODO: type description here. MONDAY: TODO: type description here. TUESDAY: TODO: type description here. WEDNESDAY: TODO: type description here. THURSDAY: TODO: type description here. FRIDAY: TODO: type description here. SATURDAY: TODO: type description here. """ SUNDAY = 'Sunday' MONDAY = 'Monday' TUESDAY = 'Tuesday' WEDNESDAY = 'Wednesday' THURSDAY = 'Thursday' FRIDAY = 'Friday' SATURDAY = 'Saturday'