com.ancientlightstudios.example.features.server.model.ParametersPath200Response.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kotlin-openapi-test Show documentation
Show all versions of quarkus-kotlin-openapi-test Show documentation
An example application using the Kotlin OpenAPI generator.
// THIS IS A GENERATED FILE. DO NOT EDIT!
package com.ancientlightstudios.example.features.server.model
import com.ancientlightstudios.example.custom.*
import com.ancientlightstudios.quarkus.kotlin.openapi.*
import com.ancientlightstudios.quarkus.kotlin.openapi.extension.*
import com.fasterxml.jackson.databind.JsonNode
data class ParametersPath200Response(
val name: String,
val id: Int
) {
fun asJson(): JsonNode = objectNode()
.setProperty("name", name.asJson(), true)
.setProperty("id", id.asJson(), true)
companion object {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy