JsonFeature
class JsonFeature
HttpClient feature that serializes/de-serializes as JSON custom objects to request and from response bodies using a serializer.
The default serializer is GsonSerializer.
The default acceptContentTypes is a list which contains ContentType.Application.Json
Note: It will de-serialize the body response if the specified type is a public accessible class
and the Content-Type is one of acceptContentTypes list (application/json
by default).
Types
class Config JsonFeature configuration that is used during installation |
|
companion object Feature : Companion object for feature installation |
Constructors
JsonFeature(serializer: JsonSerializer) |
Properties
val acceptContentTypes: List<ContentType> that are allowed when receiving content |
|
val serializer: JsonSerializer that is used to serialize and deserialize request/response bodies |
Companion Object Properties
val key: AttributeKey<JsonFeature> The AttributeKey for this feature. |
Companion Object Functions
fun install(feature: JsonFeature, scope: HttpClient): Unit Installs the feature class for a HttpClient defined at scope. |
|
fun prepare(block: Config.() -> Unit): JsonFeature Builds a TFeature by calling the block with a TConfig config instance as receiver. |