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