Packages

An Elixir client library for the Pomelo API — the Latin American fintech platform for card issuing, digital accounts, KYC/KYB, fraud prevention, loyalty, and credit products.

Current section

Files

Jump to
pomelo_ex lib pomelo_ex adapter.ex
Raw

lib/pomelo_ex/adapter.ex

defmodule PomeloEx.Adapter do
@moduledoc false
@callback request(
method :: atom(),
url :: String.t(),
body :: term(),
headers :: list({String.t(), String.t()})
) :: {:ok, PomeloEx.Adapter.Response.t()} | {:error, term()}
end