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

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

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

import io.swagger.v3.oas.models.security.SecurityScheme

/**
 * The locations of the API key.
 */
enum class AuthKeyLocation(val swaggerType: SecurityScheme.In) {
    QUERY(SecurityScheme.In.QUERY),
    HEADER(SecurityScheme.In.HEADER),
    COOKIE(SecurityScheme.In.COOKIE)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy