Metadata accompanying a successful REST response.
:status- the HTTP status code.:headers- the raw response headers, as returned byReq.:links- parsed pagination links, e.g.%{"next" => url, "last" => url}. Empty when the endpoint is not paginated.:rate_limit- aGhEx.RateLimitsnapshot, ornilif the headers were absent.
Summary
Types
@type t() :: %GhEx.REST.Meta{ headers: map() | list(), links: %{optional(String.t()) => String.t()}, rate_limit: GhEx.RateLimit.t() | nil, status: pos_integer() | nil }