Current section
Files
Jump to
Current section
Files
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