# -*- coding: utf-8 -*-
[docs]class ProgressaskStatusEnum(object):
"""Implementation of the 'ProgressaskStatus' enum.
Specifies the progress task status.
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'