Source code for models_v2.status_15_enum

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

[docs]class Status15Enum(object): """Implementation of the 'Status15' enum. Specifies the current status of the progress task. Attributes: ACTIVE: TODO: type description here. FINISHED: TODO: type description here. FINISHEDWITHERROR: TODO: type description here. CANCELED: TODO: type description here. FINISHEDGARBAGECOLLECTED: TODO: type description here. """ ACTIVE = 'Active' FINISHED = 'Finished' FINISHEDWITHERROR = 'FinishedWithError' CANCELED = 'Canceled' FINISHEDGARBAGECOLLECTED = 'FinishedGarbageCollected'