Source code for models_v2.move_after_unit_enum
# -*- coding: utf-8 -*-
[docs]class MoveAfterUnitEnum(object):
"""Implementation of the 'MoveAfterUnit' enum.
Specifies the unit for moving the data from current tier to next tier.
This unit will be a base unit for the 'moveAfter' field specified below.
Attributes:
DAYS: TODO: type description here.
WEEKS: TODO: type description here.
MONTHS: TODO: type description here.
YEARS: TODO: type description here.
"""
DAYS = 'Days'
WEEKS = 'Weeks'
MONTHS = 'Months'
YEARS = 'Years'