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

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

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

/**
 * See [OpenAPI Specification - Info Object](https://swagger.io/specification/#info-object).
 */
data class InfoData(
    val title: String,
    val version: String?,
    val description: String?,
    val summary: String?,
    val termsOfService: String?,
    val contact: ContactData?,
    val license: LicenseData?,
) {
    companion object {
        val DEFAULT = InfoData(
            title = "API",
            version = null,
            description = null,
            summary = null,
            termsOfService = null,
            contact = null,
            license = null,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy