io.cequence.wsclient.domain.WsRequestContext.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ws-client-core_2.12 Show documentation
Show all versions of ws-client-core_2.12 Show documentation
Generic WebServices library currently only with Play WS impl./backend
package io.cequence.wsclient.domain
import io.cequence.wsclient.service.ws.Timeouts
case class WsRequestContext(
explTimeouts: Option[Timeouts] = None,
/**
* Auth headers (HTTP headers) to be added to each request.
*/
authHeaders: Seq[(String, String)] = Nil,
/**
* Extra parameters to be added to each request.
*/
extraParams: Seq[(String, String)] = Nil
)