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

main.io.github.smiley4.ktorswaggerui.data.ServerData.kt Maven / Gradle / Ivy

The newest version!
package io.github.smiley4.ktorswaggerui.data

/**
 * See [OpenAPI Specification - Server Object](https://swagger.io/specification/#server-object).
 */
data class ServerData(
    val url: String,
    val description: String?,
    val variables: List
) {

    companion object {
        val DEFAULT = ServerData(
            url = "/",
            description = null,
            variables = emptyList()
        )
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy