# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class DayEnum(object):
"""Implementation of the 'Day' enum.
TODO: type enum description here.
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'