the shape of the parsed response body. Supply it at the call site
(HttpGet<Payload>(...)) so Data is typed rather than unknown.
The parsed response body, per the request's ResponseType.
Response headers, lower-cased keys.
True when Status is in the 2xx range.
HTTP status code.
HTTP status text.
The final URL the response came from (after any redirects).
The result of a request. Returned for 2xx responses, and — when
ThrowOnErroris disabled — for any response at all.The axios equivalent is its response object, with the fields renamed to MJ's
PascalCaseconvention:data->Data,status->Status,headers->Headers.Example