FusionAuthState

data class FusionAuthState(var accessToken: String? = null, var accessTokenExpirationTime: Long? = null, val idToken: String?, val refreshToken: String?)

Represents the state of FusionAuth authorization.

Constructors

Link copied to clipboard
constructor(accessToken: String? = null, accessTokenExpirationTime: Long? = null, idToken: String?, refreshToken: String?)

Properties

Link copied to clipboard

The access token string.

Link copied to clipboard

The expiration time of the access token.

Link copied to clipboard

The ID token string.

Link copied to clipboard

The refresh token string.