Connection Auth Parameters
data class ConnectionAuthParameters(val apiKeyAuthParameters: ConnectionAuthParametersApiKeyAuthParameters? = null, val authorizationType: String? = null, val basicAuthParameters: ConnectionAuthParametersBasicAuthParameters? = null, val oauthParameters: ConnectionAuthParametersOauthParameters? = null)
Constructors
Link copied to clipboard
constructor(apiKeyAuthParameters: ConnectionAuthParametersApiKeyAuthParameters? = null, authorizationType: String? = null, basicAuthParameters: ConnectionAuthParametersBasicAuthParameters? = null, oauthParameters: ConnectionAuthParametersOauthParameters? = null)
Properties
Link copied to clipboard
The parameters that are configured for API key authentication. See api_key_auth_parameters
below.
Link copied to clipboard
The type of the authentication. Valid values: API_KEY_AUTH
, BASIC_AUTH
, OAUTH_AUTH
.
Link copied to clipboard
The parameters that are configured for basic authentication. See basic_auth_parameters
below.
Link copied to clipboard
The parameters that are configured for OAuth authentication. See oauth_parameters
below.