ApiKeyAuthenticationResponse

data class ApiKeyAuthenticationResponse(val in: String, val name: String, val type: String, val value: String)

ApiKey authentication gives a name and a value that can be included in either the request header or query parameters.

Constructors

Link copied to clipboard
constructor(in: String, name: String, type: String, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val in: String

The location of the authentication key/value pair in the request.

Link copied to clipboard

The key name of the authentication key/value pair.

Link copied to clipboard

The authentication type. Expected value is 'ApiKey'.

Link copied to clipboard

The value of the authentication key/value pair.