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
42
43
44
45
46
47
48
49
50
51
52
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct EmailRequestModel {
#[serde(rename = "masterPasswordHash", skip_serializing_if = "Option::is_none")]
pub master_password_hash: Option<String>,
#[serde(rename = "otp", skip_serializing_if = "Option::is_none")]
pub otp: Option<String>,
#[serde(
rename = "authRequestAccessCode",
skip_serializing_if = "Option::is_none"
)]
pub auth_request_access_code: Option<String>,
#[serde(rename = "secret", skip_serializing_if = "Option::is_none")]
pub secret: Option<String>,
#[serde(rename = "newEmail")]
pub new_email: String,
#[serde(rename = "newMasterPasswordHash")]
pub new_master_password_hash: String,
#[serde(rename = "token")]
pub token: String,
#[serde(rename = "key")]
pub key: String,
}
impl EmailRequestModel {
pub fn new(
new_email: String,
new_master_password_hash: String,
token: String,
key: String,
) -> EmailRequestModel {
EmailRequestModel {
master_password_hash: None,
otp: None,
auth_request_access_code: None,
secret: None,
new_email,
new_master_password_hash,
token,
key,
}
}
}