RequestBuilder

case class RequestBuilder[Res](url: String, httpVerb: Method, authHeader: Map[String, String], data: Option[Res], params: Map[String, String], headers: Map[String, String])
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def withAuth(accessToken: Option[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]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product