data class User(val id: Int, val name: String) | |
inline fun <reified T> fromJson(json: String): T { | |
println(T::class.java) | |
return deserializer.fromJson<T>(json) | |
} | |
fun main() { | |
val json = """{"id":1,"name":"John Doe"}""" | |
val user = fromJson<User>(json) | |
} | |
// OUTPUT: | |
// class User |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment