Source code for models_v2.retention_units_1_enum
# -*- coding: utf-8 -*-
[docs]class RetentionUnits1Enum(object):
"""Implementation of the 'RetentionUnits1' enum.
Specifies the retention unit.
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'