package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. inputFileBytes : int64;
    (*

    [Output-only] Number of bytes of source data in a load job.

    *)
  2. inputFiles : int64;
    (*

    [Output-only] Number of source files in a load job.

    *)
  3. outputBytes : int64;
    (*

    [Output-only] Size of the loaded data in bytes. Note that while a load job is in the running state, this value may change.

    *)
  4. outputRows : int64;
    (*

    [Output-only] Number of rows imported in a load job. Note that while an import job is in the running state, this value may change.

    *)
}
val inputFileBytes : (t, int64) GapiLens.t
val inputFiles : (t, int64) GapiLens.t
val outputBytes : (t, int64) GapiLens.t
val outputRows : (t, int64) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t