AuthJWTResponse

data class AuthJWTResponse(    val id: Int,     val email: String,     val role: UserRole,     val token: String,     val refreshToken: String)

Response success auth

Constructors

Link copied to clipboard
fun AuthJWTResponse(    id: Int,     email: String,     role: UserRole,     token: String,     refreshToken: String)

Properties

Link copied to clipboard
val email: String
Link copied to clipboard
val id: Int
Link copied to clipboard
val refreshToken: String
Link copied to clipboard
val role: UserRole
Link copied to clipboard
val token: String