gcp_bigquery_client/model/
model_reference.rs

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