gcp_bigquery_client/model/
list_routines_response.rs

1use crate::model::routine::Routine;
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct ListRoutinesResponse {
6    /// A token to request the next page of results.
7    pub next_page_token: Option<String>,
8    /// Routines in the requested dataset. Unless read_mask is set in the request, only the following fields are populated: etag, project_id, dataset_id, routine_id, routine_type, creation_time, last_modified_time, and language.
9    pub routines: Option<Vec<Routine>>,
10}