Source code for models_v2.day_of_week_enum

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

[docs]class DayOfWeekEnum(object): """Implementation of the 'DayOfWeek' enum. TODO: type enum description here. 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'