Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created December 24, 2020 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatilShreyas/75d95253585d5f23ce573f606c5ed100 to your computer and use it in GitHub Desktop.
Save PatilShreyas/75d95253585d5f23ce573f606c5ed100 to your computer and use it in GitHub Desktop.
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