Source code for models_v2.full_schedule_unit_1_enum

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

[docs]class FullScheduleUnit1Enum(object): """Implementation of the 'FullScheduleUnit1' enum. Specifies the full schedule unit (including ProtectOnce policy). Attributes: DAYS: TODO: type description here. WEEKS: TODO: type description here. MONTHS: TODO: type description here. PROTECTONCE: TODO: type description here. """ DAYS = 'Days' WEEKS = 'Weeks' MONTHS = 'Months' PROTECTONCE = 'ProtectOnce'