Module Values.ResultsSummarySource

The summary of results for an upload job, including the number of updated, created, and failed records.

Sourcetype nonrec t = {
  1. updatedRecords : OptionalLong.t option;
    (*

    The number of records that were updated during the upload job.

    *)
  2. createdRecords : OptionalLong.t option;
    (*

    The number of records that were newly created during the upload job.

    *)
  3. failedRecords : OptionalLong.t option;
    (*

    The number of records that failed to be processed during the upload job.

    *)
}
Sourceval make : ?updatedRecords:??? -> ?createdRecords:??? -> ?failedRecords:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of OptionalLong.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