Source code for models_v2.alert_status_enum
# -*- coding: utf-8 -*-
[docs]class AlertStatusEnum(object):
"""Implementation of the 'AlertStatus' enum.
Specifies Alert Status type.
Attributes:
KSUCCESS: TODO: type description here.
KFAILURE: TODO: type description here.
KSLAVIOLATION: TODO: type description here.
"""
KSUCCESS = 'kSuccess'
KFAILURE = 'kFailure'
KSLAVIOLATION = 'kSlaViolation'