i am having troubles in parsing an object that containes LinkedTreeMap inside an ArrayList i loaded an image from the response that shows the object structure
i am using retrofit and the parser is Gson
my objects looks like this:
data class MainResponse(val list:ArrayList<Contacts>)
data class Contacts(var contacts: LinkedTreeMap<String, String>)
@POST("load/")
fun getList(@Body req:Request): Observable<Response<MainResponse>>