Packages

A minimalistic library for the Amazon Product Advertising Api version 5 (PAAPI5).

Current section

Files

Jump to
paapi5 lib paapi5 request.ex
Raw

lib/paapi5/request.ex

defmodule Paapi5.Request do
@moduledoc """
A signed HTTP request for the Amazon Product Advertising API.
"""
@type t() :: %__MODULE__{
method: String.t(),
url: String.t(),
body: String.t(),
headers: list({String.t(), String.t()})
}
defstruct [:method, :url, :body, :headers]
end