#[allow(unused_imports)]
use js_option::JsOption;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
pub struct BigQueryConfigPatch {
#[serde(rename = "projectId")]
#[serde(skip_serializing_if = "Option::is_none")]
pub project_id: Option<String>,
#[serde(rename = "datasetId")]
#[serde(skip_serializing_if = "Option::is_none")]
pub dataset_id: Option<String>,
#[serde(rename = "tableId")]
#[serde(skip_serializing_if = "Option::is_none")]
pub table_id: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub credentials: Option<String>,
}
impl BigQueryConfigPatch {
pub fn new() -> Self {
Self {
project_id: None,
dataset_id: None,
table_id: None,
credentials: None,
}
}
}
impl Default for BigQueryConfigPatch {
fn default() -> Self {
Self::new()
}
}