ConnectorProfileOAuthProperties

data class ConnectorProfileOAuthProperties(val authCodeUrl: String? = null, val oAuthScopes: List<String>? = null, val tokenUrl: String? = null)

Constructors

Link copied to clipboard
constructor(authCodeUrl: String? = null, oAuthScopes: List<String>? = null, tokenUrl: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authCodeUrl: String? = null

The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.

Link copied to clipboard
val oAuthScopes: List<String>? = null

The OAuth scopes required for OAuth type authentication.

Link copied to clipboard
val tokenUrl: String? = null

The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.