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

eu.kevin.api.models.auth.token.response.ReceiveTokenResponse.kt Maven / Gradle / Ivy

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

import eu.kevin.api.serializers.UUIDSerializer
import kotlinx.serialization.Serializable
import java.util.UUID

@Serializable
data class ReceiveTokenResponse(
    @Serializable(with = UUIDSerializer::class)
    val authId: UUID? = null,
    val tokenType: String,
    val accessToken: String,
    val accessTokenExpiresIn: Long,
    val refreshToken: String,
    val refreshTokenExpiresIn: Long
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy