Source code for models_v2.status_19_enum

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

[docs]class Status19Enum(object): """Implementation of the 'status19' enum. TODO: type enum description here. 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'