package sentry

  1. Overview
  2. Docs
type t = private {
  1. type_ : string;
  2. description : string option;
  3. handled : bool option;
  4. data : string Core_kernel.String.Map.t;
}
val make : type_:string -> ?description:string -> ?help_link:string -> ?handled:bool -> ?data:string Core_kernel.String.Map.t -> unit -> t
val to_payload : t -> Sentry__.Payloads_t.mechanism