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

org.http4k.format.multipartExtensions.kt Maven / Gradle / Ivy

There is a newer version: 5.41.0.0
Show newest version
package org.http4k.format

import org.http4k.lens.MultipartFormField
import org.http4k.lens.ParamMeta.ObjectParam

fun  MultipartFormField.Companion.json(auto: Json) = with(auto) {
    string().mapWithNewMeta({ parse(it) }, { compact(it) }, ObjectParam)
}

inline fun  MultipartFormField.Companion.auto(auto: AutoMarshalling) = with(auto) {
    string().mapWithNewMeta({ asA(it) }, { asFormatString(it) }, ObjectParam)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy