KeyCloakAuthResponse

data class KeyCloakAuthResponse(val access_token: String?, val expires_in: Double?, val refresh_expires_in: Double?, val refresh_token: String?, val token_type: String?, val id_token: String?, val session_state: String?, val scope: String?, val storingDate: Date?) : Parcelable

Constructors

Link copied to clipboard
constructor(access_token: String?, expires_in: Double?, refresh_expires_in: Double?, refresh_token: String?, token_type: String?, id_token: String?, session_state: String?, scope: String?, storingDate: Date?)

Properties

Link copied to clipboard

The access token issued by the authorization server.

Link copied to clipboard

check if access token is still valid.

Link copied to clipboard

The lifetime in seconds of the access token.

Link copied to clipboard
Link copied to clipboard

The lifetime in seconds of the refresh token.

Link copied to clipboard

The refresh token, which can be used to obtain new access tokens using the same authorization grant without the user's interaction.

Link copied to clipboard

check if refresh token is still valid.

Link copied to clipboard
Link copied to clipboard

if the "state" parameter was present in the client authorization request. The exact value received from the client.

Link copied to clipboard

property generated by BlueGPS SDK for internal use.

Link copied to clipboard

The type of the token issued. Value is case insensitive.

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)