-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Open
Labels
Description
Bug Report Checklist
- Have you provided a full/minimal spec to reproduce the issue?
- Have you validated the input using an OpenAPI validator?
- Have you tested with the latest master to confirm the issue still exists?
- Have you searched for related issues/PRs?
- What's the actual output vs expected output?
- [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description
The Vert.x API mustache template does not handle enum class name construction for default values of operation parameters.
It currently outputs {{{defaultValue}}} which does not contain properly constructed class name, leading to invalid code.
It should be {{#isEnum}}{{enumName}}{{operationIdCamelCase}}.{{enumDefaultValue}}{{/isEnum}}{{^isEnum}}{{{defaultValue}}}{{/isEnum}} as in every other client API template.
openapi-generator version
master, bug discovered by accident while fixing a different issue.
I'll fix this.