Source code for models_v2.unit_7_enum

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

[docs]class Unit7Enum(object): """Implementation of the 'Unit7' enum. Specificies the Retention Unit of a CDP backup measured in minutes or hours. Attributes: MINUTES: TODO: type description here. HOURS: TODO: type description here. """ MINUTES = 'Minutes' HOURS = 'Hours'