Module Http_types.Response

type t = {
  1. status : int;
  2. headers : (string * string) list;
  3. body : Body.t;
}

Common response type returned by backends.

val sexp_of_t : t -> Sexplib0.Sexp.t
val status : t -> int