Current section

Files

Jump to
aws_ex_ray_httpoison lib aws_ex_ray httpoison request.ex
Raw

lib/aws_ex_ray/httpoison/request.ex

defmodule AwsExRay.HTTPoison.Request do
@type t :: %__MODULE__{
method: atom,
url: binary,
body: any,
headers: HTTPoison.Base.headers,
options: Keyword.t
}
defstruct method: "",
url: "",
body: "",
headers: [],
options: []
end