Retrofit 2, converters and unwrapping json objects with RxJava
My two cents on how to deal with wrapped json objects by using Retrofit converters
I’m sure everyone has had the joy of dealing with wrapped objects in json. The best part of them is that you get to check for errors 3 times: IOException, isSuccessful, and the response’s custom result code, if you were to use the default Call<> object provided by Retrofit 2.