gcp_bigquery_client/model/
list_models_response.rs

1use crate::model::model::Model;
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct ListModelsResponse {
6    /// A token to request the next page of results.
7    pub next_page_token: Option<String>,
8    /// Models in the requested dataset. Only the following fields are populated: model_reference, model_type, creation_time, last_modified_time and labels.
9    pub models: Option<Vec<Model>>,
10}