sig
  type t = {
    defaultDataset : GapiBigqueryV2Model.DatasetReference.t;
    dryRun : bool;
    kind : string;
    maxResults : int;
    preserveNulls : bool;
    query : string;
    timeoutMs : int;
    useQueryCache : bool;
  }
  val defaultDataset :
    (GapiBigqueryV2Model.QueryRequest.t,
     GapiBigqueryV2Model.DatasetReference.t)
    GapiLens.t
  val dryRun : (GapiBigqueryV2Model.QueryRequest.t, bool) GapiLens.t
  val kind : (GapiBigqueryV2Model.QueryRequest.t, string) GapiLens.t
  val maxResults : (GapiBigqueryV2Model.QueryRequest.t, int) GapiLens.t
  val preserveNulls : (GapiBigqueryV2Model.QueryRequest.t, bool) GapiLens.t
  val query : (GapiBigqueryV2Model.QueryRequest.t, string) GapiLens.t
  val timeoutMs : (GapiBigqueryV2Model.QueryRequest.t, int) GapiLens.t
  val useQueryCache : (GapiBigqueryV2Model.QueryRequest.t, bool) GapiLens.t
  val empty : GapiBigqueryV2Model.QueryRequest.t
  val render :
    GapiBigqueryV2Model.QueryRequest.t -> GapiJson.json_data_model list
  val parse :
    GapiBigqueryV2Model.QueryRequest.t ->
    GapiJson.json_data_model -> GapiBigqueryV2Model.QueryRequest.t
  val to_data_model :
    GapiBigqueryV2Model.QueryRequest.t -> GapiJson.json_data_model
  val of_data_model :
    GapiJson.json_data_model -> GapiBigqueryV2Model.QueryRequest.t
end