Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Client(val id: String? = null, val signIn: SignIn? = null, val signUp: SignUp? = null, val sessions: List<Session> = emptyList(), val lastActiveSessionId: String? = null, val updatedAt: Long? = null)

The Client object keeps track of the authenticated sessions in the current device. The device can be a browser, a native application or any other medium that is usually the requesting part in a request/response architecture.