```moshi.adapter<List<Appointment>>(List::class.java).fromJson(response.bodyString())```...
r
Copy code
moshi.adapter<List<Appointment>>(List::class.java).fromJson(response.bodyString())
^ not doing the trick
z
Use the reified adapter() function or create a ParameterizedType via Types.newParameterizedType()
List alone is not enough information
r
Ah, good to know