Module GapiBigqueryV2Model.TableDataInsertAllRequest

module Rows : sig ... end
type t = {
ignoreUnknownValues : bool;

[Optional] Accept rows that contain values that do not match the schema. The unknown values are ignored. Default is false, which treats unknown values as errors.

kind : string;

The resource type of the response.

rows : Rows.t list;

The rows to insert.

skipInvalidRows : bool;

[Optional] Insert all valid rows of a request, even if invalid rows exist. The default value is false, which causes the entire request to fail if any invalid rows exist.

templateSuffix : string;

[Experimental] If specified, treats the destination table as a base template, and inserts the rows into an instance table named "". BigQuery will manage creation of the instance table, using the schema of the base template table.

}
val ignoreUnknownValues : (t, bool) GapiLens.t
val kind : (t, string) GapiLens.t
val rows : (tRows.t list) GapiLens.t
val skipInvalidRows : (t, bool) GapiLens.t
val templateSuffix : (t, string) 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