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
32
33
34
35
36
37
38
39
40
41
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ProjectResponseModel {
#[serde(rename = "object", skip_serializing_if = "Option::is_none")]
pub object: Option<String>,
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[serde(rename = "organizationId", skip_serializing_if = "Option::is_none")]
pub organization_id: Option<String>,
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(rename = "creationDate", skip_serializing_if = "Option::is_none")]
pub creation_date: Option<String>,
#[serde(rename = "revisionDate", skip_serializing_if = "Option::is_none")]
pub revision_date: Option<String>,
#[serde(rename = "secrets", skip_serializing_if = "Option::is_none")]
pub secrets: Option<Vec<String>>,
}
impl ProjectResponseModel {
pub fn new() -> ProjectResponseModel {
ProjectResponseModel {
object: None,
id: None,
organization_id: None,
name: None,
creation_date: None,
revision_date: None,
secrets: None,
}
}
}