Source code for models_v2.schedule_unit_1_enum

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

[docs]class ScheduleUnit1Enum(object): """Implementation of the 'ScheduleUnit1' enum. Specifies the schedule unit. Attributes: RUNS: TODO: type description here. HOURS: TODO: type description here. DAYS: TODO: type description here. WEEKS: TODO: type description here. MONTHS: TODO: type description here. YEARS: TODO: type description here. """ RUNS = 'Runs' HOURS = 'Hours' DAYS = 'Days' WEEKS = 'Weeks' MONTHS = 'Months' YEARS = 'Years'