Http.App_info
App-level attribution and feature-flag headers.
type t = {
http_referer : string option;
x_title : string option;
categories : string list;
cache : bool;
experimental_metadata : bool;
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