commonMain.net.folivo.trixnity.clientserverapi.model.uia.ThirdPidCredentials.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trixnity-clientserverapi-model Show documentation
Show all versions of trixnity-clientserverapi-model Show documentation
Multiplatform Kotlin SDK for matrix-protocol
package net.folivo.trixnity.clientserverapi.model.uia
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class ThirdPidCredentials(
@SerialName("sid") val sid: String,
@SerialName("client_secret") val clientSecret: String,
@SerialName("id_server") val identityServer: String?,
@SerialName("id_access_token") val identityServerAccessToken: String?
)