Source code for models.interval_enum

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

[docs]class IntervalEnum(object): """Implementation of the 'interval' enum. TODO: type enum description here. Attributes: KHOUR: TODO: type description here. KDAY: TODO: type description here. KWEEK: TODO: type description here. """ KHOUR = 'kHour' KDAY = 'kDay' KWEEK = 'kWeek'