Source code for models_v2.status_30_enum
# -*- coding: utf-8 -*-
[docs]class Status30Enum(object):
"""Implementation of the 'status30' 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'