Module GapiBigqueryV2Model.JobStatistics2

module JobStatistics2: sig .. end

type t = {
   billingTier : int; (*
[Output-only] Billing tier for the job.
*)
   cacheHit : bool; (*
[Output-only] Whether the query result was fetched from the query cache.
*)
   queryPlan : GapiBigqueryV2Model.ExplainQueryStage.t list; (*
[Output-only, Experimental] Describes execution plan for the query as a list of stages.
*)
   totalBytesBilled : int64; (*
[Output-only] Total bytes billed for the job.
*)
   totalBytesProcessed : int64; (*
[Output-only] Total bytes processed for the job.
*)
}
val billingTier : (t, int) GapiLens.t
val cacheHit : (t, bool) GapiLens.t
val queryPlan : (t,
GapiBigqueryV2Model.ExplainQueryStage.t list)
GapiLens.t
val totalBytesBilled : (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