gcp_bigquery_client/model/
table_list.rs

1use crate::model::table_list_tables::TableListTables;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct TableList {
7    /// A hash of this page of results.
8    #[serde(skip_serializing_if = "Option::is_none")]
9    pub etag: Option<String>,
10    /// The type of list.
11    #[serde(skip_serializing_if = "Option::is_none")]
12    pub kind: Option<String>,
13    /// A token to request the next page of results.
14    #[serde(skip_serializing_if = "Option::is_none")]
15    pub next_page_token: Option<String>,
16    /// Tables in the requested dataset.
17    #[serde(skip_serializing_if = "Option::is_none")]
18    pub tables: Option<Vec<TableListTables>>,
19    /// The total number of tables in the dataset.
20    #[serde(skip_serializing_if = "Option::is_none")]
21    pub total_items: Option<i32>,
22}