Redirect
data class Redirect(val url: String, val params: AuthenticationResponseParameters? = null, val error: OAuth2Error? = null) : AuthenticationResponseResult(source)
Wallet returns the AuthenticationResponseParameters as fragment parameters appended to the redirect_uri of the Relying Party, i.e., clients should simply open the url. The params (or when applicable the error) are also included for further use.
Constructors
Link copied to clipboard
constructor(url: String, params: AuthenticationResponseParameters? = null, error: OAuth2Error? = null)