I have a swagger API that I am generating client and server code from.
The client code uses the 'Angular Typescript' option; the server uses the 'node.js' option.
The problem I am having is that the client code models' properties are being generated in camel case (e.g. firstName) and the server models' properties are being generated as pascal case (e.g. FirstName).
The models I have defined inside the spec use pascal case.
Because of the different casings, I am having issues referencing the properties.
Is there a simple way (i.e. not modifying the swagger code gen source) to have the generator respect the names that are defined in the swagger document?