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

endpoints4s.openapi.Headers.scala Maven / Gradle / Ivy

The newest version!
package endpoints4s.openapi

import endpoints4s.openapi.model.Schema

/** Internal.
  * @group interpreters
  */
trait Headers {

  /** @param value List of request header names (e.g. “Authorization”)
    */
  case class DocumentedHeaders(value: List[DocumentedHeader])

  case class DocumentedHeader(
      name: String,
      description: Option[String],
      required: Boolean,
      schema: Schema
  )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy