RequestBuilder

github4s.http.RequestBuilder
case class RequestBuilder[Res](url: String, httpVerb: Method, authHeader: Map[String, String], data: Option[Res], params: Map[String, String], headers: Map[String, String])

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def withAuth(accessToken: Option[String]): RequestBuilder[Res]
def withAuthHeader(authHeader: Map[String, String]): RequestBuilder[Res]
def withData(data: Res): RequestBuilder[Res]
def withHeaders(headers: Map[String, String]): RequestBuilder[Res]
def withParams(params: Map[String, String]): RequestBuilder[Res]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product