main.io.github.smiley4.ktorswaggerui.data.OpenApiResponseData.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
/**
* Information about a response for a status-code.
*/
data class OpenApiResponseData(
val statusCode: String,
val description: String?,
val headers: Map,
val body: OpenApiBaseBodyData?,
)