Source code for models_v2.unit_8_enum

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

[docs]class Unit8Enum(object): """Implementation of the 'Unit8' enum. Specifies how often to migrate data from source to target 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'