Source code for models_v2.type_45_enum

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

[docs]class Type45Enum(object): """Implementation of the 'Type45' enum. MCM signup request status type. Attributes: OPEN: TODO: type description here. INPROGRESS: TODO: type description here. DENIED: TODO: type description here. FINISHED: TODO: type description here. """ OPEN = 'Open' INPROGRESS = 'InProgress' DENIED = 'Denied' FINISHED = 'Finished'