Authorization Parameters
data class AuthorizationParameters(var clientId: String, var scope: List<String>, var state: String, var accessType: String, var codeChallenge: String?, var codeChallengeMethod: String?, var keysJwk: String?)
Parameters provided in an incoming OAuth request.
This struct represents parameters obtained from an incoming OAuth request - that is, the values that an OAuth client would append to the authorization URL when initiating an OAuth sign-in flow.