1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use crate::model::project_reference::ProjectReference;
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ProjectList {
pub total_items: Option<i32>,
pub kind: Option<String>,
pub projects: Option<Vec<Project>>,
pub etag: Option<String>,
pub next_page_token: Option<String>,
}
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Project {
pub kind: Option<String>,
pub project_reference: Option<ProjectReference>,
pub numeric_id: Option<u64>,
pub friendly_name: Option<String>,
pub id: Option<String>,
}