Source code for models_v2.priority_enum

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

[docs]class PriorityEnum(object): """Implementation of the 'Priority' enum. Specifies the priority of the Protection Group. Attributes: KLOW: TODO: type description here. KMEDIUM: TODO: type description here. KHIGH: TODO: type description here. """ KLOW = 'kLow' KMEDIUM = 'kMedium' KHIGH = 'kHigh'