We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it currently possible to have fields generated from JSON be lower camel case?
For example if I have JSON:
{ "Property1" : "Any Value", "PropertyTwo" : "any value2", "property3" : "Value" }
I want the class to look like
public class Clazz { private String property1; private String propertyTwo; private String property3; }
At the moment it creates the fields as Property1 which goes against common code style.
Property1
Thanks
The text was updated successfully, but these errors were encountered:
This is a regression, we should be generating lower camel case. Will definitely look to fix this. Thanks for raising it!
Sorry, something went wrong.
Closed by #565
No branches or pull requests
Is it currently possible to have fields generated from JSON be lower camel case?
For example if I have JSON:
I want the class to look like
At the moment it creates the fields as
Property1
which goes against common code style.Thanks
The text was updated successfully, but these errors were encountered: