gcp_bigquery_client/model/
table_data_insert_all_response.rs

1use crate::model::table_data_insert_all_response_insert_errors::TableDataInsertAllResponseInsertErrors;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct TableDataInsertAllResponse {
7    /// An array of errors for rows that were not inserted.
8    #[serde(skip_serializing_if = "Option::is_none")]
9    pub insert_errors: Option<Vec<TableDataInsertAllResponseInsertErrors>>,
10    /// The resource type of the response.
11    #[serde(skip_serializing_if = "Option::is_none")]
12    pub kind: Option<String>,
13}