Module Values.ApplicationComponentStatusSummarySource

Summary of the analysis status of the application component.

Sourcetype nonrec t = {
  1. count : Integer.t option;
    (*

    The number of application components successfully analyzed, partially successful or failed analysis.

    *)
  2. srcCodeOrDbAnalysisStatus : SrcCodeOrDbAnalysisStatus.t option;
    (*

    The status of database analysis.

    *)
}
Sourceval make : ?count:??? -> ?srcCodeOrDbAnalysisStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.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