Madge.RequestAn HTTP request, according to Madge.
val meth_to_string : meth -> stringval meth_to_cohttp_code_meth : meth -> Cohttp.Code.methval cohttp_code_meth_to_meth : Cohttp.Code.meth -> methval is_safe : meth -> boolWhether the method is safe, according to the HTTP specification. Safe methods are not supposed to have any side-effect on the server and can therefore be cached. See https://developer.mozilla.org/en-US/docs/Glossary/Safe/HTTP
val to_yojson : t -> Yojson.Safe.tval of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_orMake a request from a method, a URI and a body.
val uri : t -> Uri.tval body : t -> string