Just a Question for nested JSON #4132
Answered
by
JakeWharton
NicosNicolaou16
asked this question in
Q&A
|
Hello, |
Answered by
JakeWharton
May 30, 2024
Replies: 1 comment 1 reply
|
Retrofit is not involved in the deserialization of JSON, and so you'll have to go ask on the support forums for your chosen JSON library. All we do is hand the raw body bytes to your chosen converter and wait for it to give us back the resulting object. Any customization of how the bytes are turned into the object is entirely done within that library, not ours. Good luck! |
1 reply
Answer selected by
NicosNicolaou16
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Retrofit is not involved in the deserialization of JSON, and so you'll have to go ask on the support forums for your chosen JSON library. All we do is hand the raw body bytes to your chosen converter and wait for it to give us back the resulting object. Any customization of how the bytes are turned into the object is entirely done within that library, not ours. Good luck!