All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.kevin.api.models.auth.token.request.RefreshTokenRequest.kt Maven / Gradle / Ivy

The newest version!
package eu.kevin.api.models.auth.token.request

import kotlinx.serialization.Required
import kotlinx.serialization.Serializable

@Serializable
data class RefreshTokenRequest(
    val refreshToken: String
) {
    @Required
    private val grantType = AuthGrantType.REFRESH_TOKEN
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy