Python Flask RestPlus Enum Type
You can assign the member names to it:
fields.String(description='The object type', enum=EnumGender._member_names_)
I have opted for this approach:
fields.String(attribute=lambda x: str(EnumGender(x.FieldContainingEnum).name))
(Source: How to get back name of the enum element in python?)