Source code for models_v2.unit_6_enum

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

[docs]class Unit6Enum(object): """Implementation of the 'Unit6' enum. Specifies how often to start new runs of a Protection Group. <br>'Weeks' specifies that new Protection Group runs start weekly on certain days specified using 'dayOfWeek' field. <br>'Months' specifies that new Protection Group runs start monthly on certain day of specific week. Attributes: DAYS: TODO: type description here. WEEKS: TODO: type description here. MONTHS: TODO: type description here. """ DAYS = 'Days' WEEKS = 'Weeks' MONTHS = 'Months'