Source code for models.status_get_protection_runs_stats_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class StatusGetProtectionRunsStatsEnum(object):
"""Implementation of the 'status_GetProtectionRunsStats' enum.
TODO: type enum description here.
Attributes:
KSUCCESS: TODO: type description here.
KFAILURE: TODO: type description here.
KCANCELED: TODO: type description here.
KWARNING: TODO: type description here.
"""
KSUCCESS = 'kSuccess'
KFAILURE = 'kFailure'
KCANCELED = 'kCanceled'
KWARNING = 'kWarning'