Source code for models_v2.status_24_enum
# -*- coding: utf-8 -*-
[docs]class Status24Enum(object):
"""Implementation of the 'Status24' enum.
Specifies the registration status.
Attributes:
NOTDONE: TODO: type description here.
INPROGRESS: TODO: type description here.
SUCCESS: TODO: type description here.
FAILED: TODO: type description here.
"""
NOTDONE = 'NotDone'
INPROGRESS = 'InProgress'
SUCCESS = 'Success'
FAILED = 'Failed'