defmodule Pillar.HttpClient.Response do @moduledoc """ Wrapper for HTTP response """ defstruct [:status_code, :body, :headers] @type t :: %{ __struct__: __MODULE__, status_code: pos_integer(), body: term(), headers: [tuple()] } end