gcp_bigquery_client/model/
table_data_insert_all_request_rows.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct TableDataInsertAllRequestRows {
6    /// [Optional] A unique ID for each row. BigQuery uses this property to detect duplicate insertion requests on a best-effort basis.
7    #[serde(skip_serializing_if = "Option::is_none")]
8    pub insert_id: Option<String>,
9    /// Represents a single JSON object.
10    // pub json: ::std::collections::HashMap<String, serde_json::Value>,
11    pub json: serde_json::Value,
12}