Source code for models_v2.states_list_enum

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

[docs]class StatesListEnum(object): """Implementation of the 'statesList' enum. TODO: type enum description here. Attributes: KRESOLVED: TODO: type description here. KOPEN: TODO: type description here. KNOTE: TODO: type description here. KALERTSUPPRESSED: TODO: type description here. """ KRESOLVED = 'kResolved' KOPEN = 'kOpen' KNOTE = 'kNote' KALERTSUPPRESSED = 'kAlertSuppressed'