Module Values.AnnotationSource

An annotation that provides additional context or metadata.

Sourcetype nonrec t = {
  1. title : String_.t option;
    (*

    The title of the annotation.

    *)
  2. destructiveHint : Boolean.t option;
    (*

    A hint indicating that the annotation contains potentially destructive content.

    *)
}
Sourceval make : ?title:??? -> ?destructiveHint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t