Token

data class Token(    val id: Int? = null,     val userId: Int,     val deviceId: String,     val token: String,     val refreshToken: String,     val expiresAt: Long,     val createAt: Long)

Constructors

Link copied to clipboard
fun Token(    id: Int? = null,     userId: Int,     deviceId: String,     token: String,     refreshToken: String,     expiresAt: Long,     createAt: Long)

Properties

Link copied to clipboard
val createAt: Long
Link copied to clipboard
val deviceId: String
Link copied to clipboard
val expiresAt: Long
Link copied to clipboard
val id: Int? = null
Link copied to clipboard
val refreshToken: String
Link copied to clipboard
val token: String
Link copied to clipboard
val userId: Int