module Rows:sig..end
type t = {
|
insertId : |
(* |
[Optional] A unique ID for each row. BigQuery uses this property to detect duplicate insertion requests on a best-effort basis.
| *) |
|
json : |
(* |
[Required] A JSON object that contains a row of data. The object's properties and values must match the destination table's schema.
| *) |
val insertId : (t, string) GapiLens.t
val json : (t,
GapiBigqueryV2Model.JsonObject.t)
GapiLens.t
val empty : t
val render : t ->
GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model ->
t