SystemParameterResponse

data class SystemParameterResponse(val httpHeader: String, val name: String, val urlQueryParameter: String)

Define a parameter's name and location. The parameter may be passed as either an HTTP header or a URL query parameter, and if both are passed the behavior is implementation-dependent.

Constructors

Link copied to clipboard
fun SystemParameterResponse(httpHeader: String, name: String, urlQueryParameter: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Define the HTTP header name to use for the parameter. It is case insensitive.

Link copied to clipboard

Define the name of the parameter, such as "api_key" . It is case sensitive.

Link copied to clipboard

Define the URL query parameter name to use for the parameter. It is case sensitive.