Source code for models.alert_state_list_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class AlertStateListEnum(object):
"""Implementation of the 'alertStateList' enum.
TODO: type enum description here.
Attributes:
KOPEN: TODO: type description here.
KRESOLVED: TODO: type description here.
KALERTSUPPRESSED: TODO: type description here.
"""
KOPEN = 'kOpen'
KRESOLVED = 'kResolved'
KALERTSUPPRESSED = 'kAlertSuppressed'