Hello! I am using Ktor framework to build a web ap...
# server
d
Hello! I am using Ktor framework to build a web app and I am playing around with the built-in jackson content negotiation, I have data classes that I must respond back to the client side using call.respond(status = HttpStatusCode.OK) {return@respond patientList} where patientList is a list<JSONPatient> and JSONPatient is a data class that has nested data classes but it is all primitive types.I keep getting this error message and i can't figure out why.