package ocaml_openapi_generator

  1. Overview
  2. Docs
module Method : sig ... end
type 'response t = {
  1. base_url : string;
  2. headers : (string * string) list;
  3. secure : bool;
  4. make_request : ?body:string -> 'response t -> Uri.t -> Method.t -> 'response Async.Deferred.Or_error.t;
  5. response_to_string : 'response -> string;
}
val response_to_string : 'response t -> 'response -> string
val make_request : 'response t -> ?body:string -> 'response t -> Uri.t -> Method.t -> 'response Async.Deferred.Or_error.t
val secure : 'response t -> bool
val headers : 'response t -> (string * string) list
val base_url : 'response t -> string
OCaml

Innovation. Community. Security.