# -*- coding: utf-8 -*-
[docs]class Status8Enum(object):
"""Implementation of the 'Status8' enum.
Specifies the recovery status for this file or folder.
Attributes:
NOTSTARTED: TODO: type description here.
ESTIMATIONINPROGRESS: TODO: type description here.
ESTIMATIONDONE: TODO: type description here.
COPYINPROGRESS: TODO: type description here.
FINISHED: TODO: type description here.
"""
NOTSTARTED = 'NotStarted'
ESTIMATIONINPROGRESS = 'EstimationInProgress'
ESTIMATIONDONE = 'EstimationDone'
COPYINPROGRESS = 'CopyInProgress'
FINISHED = 'Finished'