Source code for models.severity_notification_rule_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class SeverityNotificationRuleEnum(object):
"""Implementation of the 'Severity_NotificationRule' 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'