Authenticated

data class Authenticated(details: AuthenticationDetails) : AuthenticationEvent.AuthenticationState

A user is currently authenticated with given details.

Constructors

Authenticated
Link copied to clipboard
fun Authenticated(details: AuthenticationDetails)

Functions

isAuthenticated
Link copied to clipboard
open override fun isAuthenticated(): Boolean
isUnauthenticated
Link copied to clipboard
open fun isUnauthenticated(): Boolean

Properties

details
Link copied to clipboard
open override val details: AuthenticationDetails
All the properties that describe the authenticated user if isAuthenticated returns true or null otherwise (no user is authenticated).