AuthRequest

data class AuthRequest @JvmOverloads constructor(val extraScopeValues: Set<String> = setOf(), val mfa: MfaType? = null, val loginHint: String? = null)

Authentication request parameters. For more information about possible values, see here

Constructors

Link copied to clipboard
constructor(extraScopeValues: Set<String> = setOf(), mfa: MfaType? = null, loginHint: String? = null)

Properties

Link copied to clipboard

Extra scope values to request. By default openid and offline_access will always be included.

Link copied to clipboard
val loginHint: String? = null

User identifier to be prefilled in the login flow.

Link copied to clipboard
val mfa: MfaType? = null

Optional MFA verification to prompt the user with.