Source code for models_v2.week_days_enum

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

[docs]class WeekDaysEnum(object): """Implementation of the 'WeekDays' enum. Specifies Week Days type. 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'