Source code for models_v2.status_10_enum

# -*- coding: utf-8 -*-

[docs]class Status10Enum(object): """Implementation of the 'Status10' 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'