main.io.github.smiley4.ktorswaggerui.data.OpenApiMultipartPartData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktor-swagger-ui Show documentation
Show all versions of ktor-swagger-ui Show documentation
Ktor plugin to document routes and provide a Swagger-UI
package io.github.smiley4.ktorswaggerui.data
import io.ktor.http.ContentType
/**
* Information about a part of a multipart request or response body.
*/
data class OpenApiMultipartPartData(
val name: String,
val type: TypeDescriptor,
val mediaTypes: Set,
val headers: Map,
)