sig
type t = {
text : string;
id : string;
markdown : string;
arguments : string list;
properties : Sarif.Properties.t;
}
val to_yojson : Sarif.Message.t -> Yojson.Safe.t
val of_yojson :
Yojson.Safe.t -> Sarif.Message.t Ppx_deriving_yojson_runtime.error_or
val _ :
Yojson.Safe.t -> Sarif.Message.t Ppx_deriving_yojson_runtime.error_or
val create :
?text:string ->
?id:string ->
?markdown:string ->
?arguments:string list ->
?properties:Sarif.Properties.t -> unit -> Sarif.Message.t
val plain_text :
text:string ->
?id:string -> ?arguments:string list -> unit -> Sarif.Message.t
val markdown :
markdown:Markdown.elements ->
?id:string -> ?arguments:string list -> unit -> Sarif.Message.t
val default : Sarif.Message.t
end