All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin-client.infrastructure.RequestConfig.kt.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package {{packageName}}.infrastructure

/**
 * Defines a config object for a given request.
 * NOTE: This object doesn't include 'body' because it
 *       allows for caching of the constructed object
 *       for many request definitions.
 * NOTE: Headers is a Map because rfc2616 defines
 *       multi-valued headers as csv-only.
 */
{{#nonPublicApi}}internal {{/nonPublicApi}}data class RequestConfig(
    val method: RequestMethod,
    val path: String,
    val headers: MutableMap = mutableMapOf(),
    val query: MutableMap> = mutableMapOf(),
    val requiresAuthentication: Boolean,
    val body: T? = null
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy