Response

@Serializable
data class Response(val userId: UserId, val deviceId: String? = null, val accessToken: String? = null, val accessTokenExpiresInMs: Long? = null, val refreshToken: String? = null)

Constructors

Link copied to clipboard
constructor(userId: UserId, deviceId: String? = null, accessToken: String? = null, accessTokenExpiresInMs: Long? = null, refreshToken: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String?
Link copied to clipboard
@SerialName(value = "expires_in_ms")
val accessTokenExpiresInMs: Long?
Link copied to clipboard
@SerialName(value = "device_id")
val deviceId: String?
Link copied to clipboard
@SerialName(value = "refresh_token")
val refreshToken: String?
Link copied to clipboard
@SerialName(value = "user_id")
val userId: UserId