Packages

Simple Elixir SDK for the Splitwise API

Current section

Files

Jump to
ex_splitwise lib splitwise client response.ex
Raw

lib/splitwise/client/response.ex

defmodule ExSplitwise.Client.Response do
@moduledoc """
Response struct, returned by all the functions in the library.
Includes the decoded JSON `body`, `headers` and `status` code.
"""
defstruct [
:body,
:headers,
:status
]
end