Questions tagged [data-class]

This phrase pertains to the data classes functionality found within the Kotlin programming language.

Parsing Json into Kotlin Data Class with GSON

I am working with a Java POJO class that looks like this: class Topic { @SerializedName("id") long id; @SerializedName("name") String name; } In addition, I also have a Kotlin data class structured as follows: data class Topic(val id: L ...