gcp_bigquery_client/model/
dataset_reference.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct DatasetReference {
6    /// [Required] A unique ID for this dataset, without the project name.
7    /// The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
8    /// The maximum length is 1,024 characters.
9    pub dataset_id: String,
10    /// The ID of the project containing this dataset.
11    pub project_id: String,
12}