Source code for models_v2.unit_5_enum

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

[docs]class Unit5Enum(object): """Implementation of the 'Unit5' enum. Specifies how often to start new Protection Group Runs of a Protection Group. <br>'Minutes' specifies that Protection Group run starts periodically after certain number of minutes specified in 'frequency' field. <br>'Hours' specifies that Protection Group run starts periodically after certain number of hours specified in 'frequency' field. Attributes: MINUTES: TODO: type description here. HOURS: TODO: type description here. """ MINUTES = 'Minutes' HOURS = 'Hours'