Module Values.GetFindingsRequestSource

Retrieves the details of one or more findings.

Sourcetype nonrec t = {
  1. findingIds : string list;
    (*

    An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array.

    *)
  2. sortCriteria : SortCriteria.t option;
    (*

    The criteria for sorting the results of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?sortCriteria:??? -> findingIds:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `Structure of (string * [> `Enum of string | `String of string ]) list ]) 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