All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ancientlightstudios.example.features.server.model.ParametersPath200Response.kt Maven / Gradle / Ivy

There is a newer version: 0.4.14
Show newest version
// 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