Module Http.App_info

App-level attribution and feature-flag headers.

type t = {
  1. http_referer : string option;
  2. x_title : string option;
  3. categories : string list;
  4. cache : bool;
  5. experimental_metadata : bool;
  6. extra : (string * string) list;
}
val none : t

All fields default to "off" / empty.

val create : ?http_referer:string -> ?x_title:string -> ?categories:string list -> ?cache:bool -> ?experimental_metadata:bool -> ?extra:(string * string) list -> unit -> t