Module Values.BatchUpdateFindingsV2UnprocessedFindingSource

The list of findings that were not updated.

Sourcetype nonrec t = {
  1. findingIdentifier : OcsfFindingIdentifier.t option;
    (*

    The finding identifier of an unprocessed finding.

    *)
  2. metadataUid : NonEmptyString.t option;
    (*

    The metadata.uid of an unprocessed finding.

    *)
  3. errorCode : BatchUpdateFindingsV2UnprocessedFindingErrorCode.t option;
    (*

    Indicates the specific type of error preventing successful processing of a finding during a batch update operation.

    *)
  4. errorMessage : NonEmptyString.t option;
    (*

    A detailed description of why a finding could not be processed during a batch update operation.

    *)
}
Sourceval make : ?findingIdentifier:??? -> ?metadataUid:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) 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