documentedGet
inline fun <Res : Any> Route.documentedGet(path: String = "", summary: String = "", description: String = "", tags: List<String> = emptyList(), successStatus: Int = 200, errorStatuses: Set<Int> = emptySet(), responseEnvelope: Boolean = false, noinline body: suspend RoutingContext.() -> Unit)(source)
Deprecated
Use typedGet with doc = OpenApiDoc(...).
Replace with
typedGet<Res>(path = path, doc = OpenApiDoc(summary = summary, description = description, tags = tags, successStatus = successStatus, errorStatuses = errorStatuses, responseEnvelope = responseEnvelope), body = body)Content copied to clipboard