Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created December 24, 2020 14:00
Embed
What would you like to do?
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