lib/sanity/request.ex
defmodule Sanity.Request do
@type t :: %Sanity.Request{}
defstruct body: nil,
endpoint: nil,
headers: [],
method: nil,
path_params: nil,
query_params: %{}
end
defmodule Sanity.Request do
@type t :: %Sanity.Request{}
defstruct body: nil,
endpoint: nil,
headers: [],
method: nil,
path_params: nil,
query_params: %{}
end