org.http4k.lens.Meta.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-core Show documentation
Show all versions of http4k-core Show documentation
Dependency-lite Server as a Function in pure Kotlin
package org.http4k.lens
data class Meta(
val required: Boolean,
val location: String,
val paramMeta: ParamMeta,
val name: String,
val description: String?,
val metadata: Map
)