I'm using com.fasterxml.jackson.databind
with Retrofit to handle the response from the server in my Android app.
Since the JSONObject
response is too complicated and contains lots of JSONArray
, I want to be able to parse some of those array fields into String instead of creating POJO for each sub-object that those Array could contains.
Is there a way I could just tell Jackson to keep those field as String and not parse them into Entities?