AuthTokenEntity

data class AuthTokenEntity(val userId: UserIDEntity, val accessToken: String, val refreshToken: String, val tokenType: String, val cookieLabel: String?)

Constructors

Link copied to clipboard
constructor(userId: UserIDEntity, accessToken: String, refreshToken: String, tokenType: String, cookieLabel: String?)

Properties

Link copied to clipboard
val accessToken: String
Link copied to clipboard
val cookieLabel: String?
Link copied to clipboard
val refreshToken: String
Link copied to clipboard
val tokenType: String
Link copied to clipboard