Source code for models_v2.unit_11_enum

# -*- coding: utf-8 -*-

[docs]class Unit11Enum(object): """Implementation of the 'Unit11' enum. Specificies the time unit after which backup will be moved to next tier. 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'