commonMain.dev.tiebe.magisterapi.response.general.year.Profile.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 Profile(
@SerialName("code")
val code: String,
@SerialName("links")
val links: JsonObject,
)