gcp_bigquery_client/model/
table_row.rs

1use crate::model::table_cell::TableCell;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct TableRow {
7    /// Represents a single row in the result set, consisting of one or more fields.
8    #[serde(rename = "f", skip_serializing_if = "Option::is_none")]
9    pub columns: Option<Vec<TableCell>>,
10}