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

kotlin-client.infrastructure.PartConfig.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 part of a multi-part request.
 * NOTE: Headers is a Map because rfc2616 defines
 *       multi-valued headers as csv-only.
 */
{{#nonPublicApi}}internal {{/nonPublicApi}}data class PartConfig(
    val headers: MutableMap = mutableMapOf(),
    val body: T? = null
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy