我在解析包含ArrayList i loaded an image from the response that shows the object structure
中包含LinkedTreeMap的对象时遇到麻烦我正在使用改造,解析器是Gson
我的对象看起来像这样:
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>>