commonMain.dev.tiebe.magisterapi.response.general.year.Group.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magisterapi-jvm Show documentation
Show all versions of magisterapi-jvm Show documentation
A Kotlin Multiplatform library for the Magister API
The newest version!
package dev.tiebe.magisterapi.response.general.year
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.JsonObject
@Serializable
data class Group (
@SerialName("id")
var id: Int,
@SerialName("code")
var code: String,
@SerialName("omschrijving")
var description: String,
@SerialName("links")
var link: JsonObject
)