Source code for models_v2.status_13_enum

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

[docs]class Status13Enum(object): """Implementation of the 'Status13' enum. Specifies the current status of the task. Attributes: SCHEDULED: TODO: type description here. INPROGRESS: TODO: type description here. SUCCEEDED: TODO: type description here. FAILED: TODO: type description here. CANCELED: TODO: type description here. """ SCHEDULED = 'scheduled' INPROGRESS = 'inProgress' SUCCEEDED = 'succeeded' FAILED = 'failed' CANCELED = 'canceled'