Module Values.SuggestedFixSource

Information about the suggested code fix to remediate a finding.

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

    A description of the suggested code fix and why it is being suggested.

    *)
  2. code : String_.t option;
    (*

    The suggested code fix. If applicable, includes code patch to replace your source code.

    *)
}
Sourceval make : ?description:??? -> ?code:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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