ru.testit.kotlin.client.infrastructure.PartConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testit-api-client-kotlin Show documentation
Show all versions of testit-api-client-kotlin Show documentation
Kotlin API client for TestIT.
package ru.testit.kotlin.client.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.
*/
data class PartConfig(
val headers: MutableMap = mutableMapOf(),
val body: T? = null
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy