AuthConfigDecryptedCredentialOauth2AuthorizationCode

data class AuthConfigDecryptedCredentialOauth2AuthorizationCode(val authEndpoint: String? = null, val clientId: String? = null, val clientSecret: String? = null, val scope: String? = null, val tokenEndpoint: String? = null)

Constructors

constructor(authEndpoint: String? = null, clientId: String? = null, clientSecret: String? = null, scope: String? = null, tokenEndpoint: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authEndpoint: String? = null

The auth url endpoint to send the auth code request to.

Link copied to clipboard
val clientId: String? = null

The client's id.

Link copied to clipboard
val clientSecret: String? = null

The client's secret.

Link copied to clipboard
val scope: String? = null

A space-delimited list of requested scope permissions.

Link copied to clipboard
val tokenEndpoint: String? = null

The token url endpoint to send the token request to.