commonMain.com.eygraber.jsonapi.JsonApiRelationship.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonapi-kotlin Show documentation
Show all versions of jsonapi-kotlin Show documentation
A Kotlin Multiplatform kotlinx.serialization library for working with JSON:API
The newest version!
package com.eygraber.jsonapi
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.JsonObject
/**
* https://jsonapi.org/format/#document-resource-object-relationships
*/
@Serializable
public data class JsonApiRelationship(
public val links: JsonApiLinks? = null,
@Serializable(with = JsonApiResourceLinkage.Serializer::class)
public val data: JsonApiResourceLinkage? = null,
public val meta: JsonObject? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy