BlueBird v0.4.2 BlueBird.Request
Defines the Request
struct.
Link to this section Summary
Link to this section Types
Link to this type
t()
t()
t() :: %BlueBird.Request{
body_params: %{optional(String.t()) => String.t()},
headers: [{String.t(), String.t()}],
method: String.t(),
path: String.t(),
path_params: %{optional(String.t()) => String.t()},
query_params: %{optional(String.t()) => String.t()},
response: BlueBird.Response.t(),
title: String.t()
}
t() :: %BlueBird.Request{ body_params: %{optional(String.t()) => String.t()}, headers: [{String.t(), String.t()}], method: String.t(), path: String.t(), path_params: %{optional(String.t()) => String.t()}, query_params: %{optional(String.t()) => String.t()}, response: BlueBird.Response.t(), title: String.t() }
Type that represents the Request struct.