commonMain.net.folivo.trixnity.clientserverapi.model.authentication.GetOIDCRequestToken.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.authentication
import io.ktor.resources.*
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import net.folivo.trixnity.core.HttpMethod
import net.folivo.trixnity.core.HttpMethodType.POST
import net.folivo.trixnity.core.MatrixEndpoint
import net.folivo.trixnity.core.model.UserId
/**
* @see matrix spec
*/
@Serializable
@Resource("/_matrix/client/v3/user/{userId}/openid/request_token")
@HttpMethod(POST)
data class GetOIDCRequestToken(
@SerialName("userId") val userId: UserId,
@SerialName("user_id") val asUserId: UserId? = null
) : MatrixEndpoint {
@Serializable
data class Response(
@SerialName("access_token") val accessToken: String,
@SerialName("expires_in") val expiresIn: Long,
@SerialName("matrix_server_name") val matrixServerName: String,
@SerialName("token_type") val tokenType: String = "Bearer"
)
}