package client
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- class CodacyClient extends AnyRef
- case class FailedResponse(message: String) extends RequestResponse[Nothing] with Product with Serializable
- case class Request[T](endpoint: String, classType: Class[T], queryParameters: Map[String, String] = Map.empty) extends Product with Serializable
- sealed trait RequestResponse[+A] extends AnyRef
- case class RequestSuccess(success: String) extends Product with Serializable
-
case class
RequestTimeout(connTimeoutMs: Int, readTimeoutMs: Int) extends Product with Serializable
The socket connection and read timeouts in milliseconds.
- case class SuccessfulResponse[A](value: A) extends RequestResponse[A] with Product with Serializable
Value Members
- object RequestResponse
- object RequestSuccess extends Serializable