Module Values_2.RowInfoSource

Information about rows for a data set SPICE ingestion.

Sourcetype nonrec t = {
  1. rowsIngested : Values_0.Long.t option;
    (*

    The number of rows that were ingested.

    *)
  2. rowsDropped : Values_0.Long.t option;
    (*

    The number of rows that were not ingested.

    *)
  3. totalRowsInDataset : Values_0.Long.t option;
    (*

    The total number of rows in the dataset.

    *)
}
Sourceval make : ?rowsIngested:??? -> ?rowsDropped:??? -> ?totalRowsInDataset:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_0.Long.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