
org.http4k.security.oauth.server.TokenRequest.kt Maven / Gradle / Ivy
package org.http4k.security.oauth.server
import org.http4k.core.Uri
import org.http4k.security.oauth.core.RefreshToken
import org.http4k.security.oauth.server.accesstoken.GrantType
data class TokenRequest(
val grantType: GrantType,
val clientId: ClientId?,
val clientSecret: String?,
val code: String?,
val redirectUri: Uri?,
val scopes: List,
val clientAssertionType: Uri?,
val clientAssertion: String?,
val refreshToken: RefreshToken?
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy