ResponseAs

sealed trait ResponseAs[+T, -R]

Describes how response body should be handled.

Describes how response body should be handled.

Apart from the basic cases (ignoring, reading as a byte array or file), response body descriptions can be mapped over, to support custom types. The mapping can take into account the ResponseMetadata, that is the headers and status code. Responses can also be handled depending on the response metadata. Finally, two response body descriptions can be combined (with some restrictions).

A number of as[Type] helper methods are available as part of SttpApi and when importing sttp.client3._.

Type Params
R

The backend capabilities required by the response description. This might be Any (no requirements), Effect (the backend must support the given effect type), Streams (the ability to send and receive streaming bodies) or WebSockets (the ability to handle websocket requests).

T

Target type as which the response will be read.

Companion
object
class Object
trait Matchable
class Any
class MappedResponseAs[T, T2, R]
class ResponseAsBoth[A, B, R]
class ResponseAsStream[F, T, Stream, S]
class ResponseAsStreamUnsafe[BinaryStream, S]

Value members

Abstract methods

def show: String

Concrete methods

def map[T2](f: T => T2): ResponseAs[T2, R]
def mapWithMetadata[T2](f: (T, ResponseMetadata) => T2): ResponseAs[T2, R]
def showAs(s: String): ResponseAs[T, R]