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

sttp.model.Method.scala Maven / Gradle / Ivy

There is a newer version: 2.0.0-RC4
Show newest version
package sttp.model

case class Method(method: String) extends AnyVal

object Method extends Methods

trait Methods {
  val GET = Method("GET")
  val HEAD = Method("HEAD")
  val POST = Method("POST")
  val PUT = Method("PUT")
  val DELETE = Method("DELETE")
  val OPTIONS = Method("OPTIONS")
  val PATCH = Method("PATCH")
  val CONNECT = Method("CONNECT")
  val TRACE = Method("TRACE")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy