gcp_bigquery_client/model/
job_list.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::model::job_list_jobs::JobListJobs;

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct JobList {
    /// A hash of this page of results.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub etag: Option<String>,
    /// List of jobs that were requested.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub jobs: Option<Vec<JobListJobs>>,
    /// The resource type of the response.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub kind: Option<String>,
    /// A token to request the next page of results.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_page_token: Option<String>,
}