commonMain.at.asitplus.wallet.lib.oidc.Json.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vck-openid Show documentation
Show all versions of vck-openid Show documentation
Kotlin Multiplatform library implementing the W3C VC Data Model, with OpenId protocol implementations
The newest version!
package at.asitplus.wallet.lib.oidc
import kotlinx.serialization.json.Json
val jsonSerializer by lazy {
Json {
prettyPrint = false
encodeDefaults = false
classDiscriminator = "type"
ignoreUnknownKeys = true
}
}