Module GapiBigqueryV2Model.JobStatistics

module JobStatistics: sig .. end

type t = {
   creationTime : int64; (*
[Output-only] Creation time of this job, in milliseconds since the epoch. This field will be present on all jobs.
*)
   endTime : int64; (*
[Output-only] End time of this job, in milliseconds since the epoch. This field will be present whenever a job is in the DONE state.
*)
   extract : GapiBigqueryV2Model.JobStatistics4.t; (*
[Output-only] Statistics for an extract job.
*)
   load : GapiBigqueryV2Model.JobStatistics3.t; (*
[Output-only] Statistics for a load job.
*)
   query : GapiBigqueryV2Model.JobStatistics2.t; (*
[Output-only] Statistics for a query job.
*)
   startTime : int64; (*
[Output-only] Start time of this job, in milliseconds since the epoch. This field will be present when the job transitions from the PENDING state to either RUNNING or DONE.
*)
   totalBytesProcessed : int64; (*
[Output-only] [Deprecated] Use the bytes processed in the query statistics instead.
*)
}
val creationTime : (t, int64) GapiLens.t
val endTime : (t, int64) GapiLens.t
val extract : (t, GapiBigqueryV2Model.JobStatistics4.t)
GapiLens.t
val load : (t, GapiBigqueryV2Model.JobStatistics3.t)
GapiLens.t
val query : (t, GapiBigqueryV2Model.JobStatistics2.t)
GapiLens.t
val startTime : (t, int64) GapiLens.t
val totalBytesProcessed : (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