Source code for models.alert_severity_list_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class AlertSeverityListEnum(object): """Implementation of the 'alertSeverityList' enum. TODO: type enum description here. Attributes: KCRITICAL: TODO: type description here. KWARNING: TODO: type description here. KINFO: TODO: type description here. """ KCRITICAL = 'kCritical' KWARNING = 'kWarning' KINFO = 'kInfo'