Source code for models.status_task_notification_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class StatusTaskNotificationEnum(object):
"""Implementation of the 'Status_TaskNotification' enum.
Status of the task.
Status of the task.
'kSuccess' indicates that task completed successfully.
'kError' indicates that task encountered errors.
Attributes:
KSUCCESS: TODO: type description here.
KERROR: TODO: type description here.
"""
KSUCCESS = 'kSuccess'
KERROR = 'kError'