Source code for models_v2.time_units_enum
# -*- coding: utf-8 -*-
[docs]class TimeUnitsEnum(object):
"""Implementation of the 'TimeUnits' enum.
Specifies Time Units type.
Attributes:
MINUTES: TODO: type description here.
HOURS: TODO: type description here.
DAYS: TODO: type description here.
WEEKS: TODO: type description here.
MONTHS: TODO: type description here.
"""
MINUTES = 'Minutes'
HOURS = 'Hours'
DAYS = 'Days'
WEEKS = 'Weeks'
MONTHS = 'Months'