Source code for models_v2.status_4_enum
# -*- coding: utf-8 -*-
[docs]class Status4Enum(object):
"""Implementation of the 'Status4' enum.
Status of snapshot.
Attributes:
KINPROGRESS: TODO: type description here.
KSUCCESSFUL: TODO: type description here.
KFAILED: TODO: type description here.
KWAITINGFORNEXTATTEMPT: TODO: type description here.
"""
KINPROGRESS = 'kInProgress'
KSUCCESSFUL = 'kSuccessful'
KFAILED = 'kFailed'
KWAITINGFORNEXTATTEMPT = 'kWaitingForNextAttempt'