-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Incorrect deserialization of numerical value #202
Comments
Hi, @spartanhooah 👋 |
Indeed, You can do something like this for your setup:
Please let me know whether you need some extra information or it's OK to close this ticket. |
Ah, I didn't know we could pass an |
That does the trick. Thank you. |
We're calling an API that returns JSON and has a numeric value of e.g.
10.00
. This gets deserialized into aDouble
of10.0
. IMO this should be deserialized into aBigDecimal
instead to maintain the proper precision.The text was updated successfully, but these errors were encountered: