Source code for models_v2.unit_15_enum
# -*- coding: utf-8 -*-
[docs]class Unit15Enum(object):
"""Implementation of the 'Unit15' 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:
WEEKS: TODO: type description here.
MONTHS: TODO: type description here.
"""
WEEKS = 'Weeks'
MONTHS = 'Months'