yonaskolb / SwagGen

OpenAPI/Swagger 3.0 Parser and Swift code generator
MIT License
625 stars 147 forks source link

Enum case names #96

Closed yonaskolb closed 6 years ago

yonaskolb commented 6 years ago

All caps Snakecase enum cases are not properly formatted. An enum with the value of PAYMENT_REQUEST gets generated as:

case paymentrequest = "PAYMENT_REQUEST"

When it should be

case paymentRequest = "PAYMENT_REQUEST"
yonaskolb commented 6 years ago

Fixed in 3.0