This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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