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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct TokenResponse {
#[serde(rename = "data")]
data: Option<::models::TokenResponseEntry>,
#[serde(rename = "errors")]
errors: Option<Vec<::models::Error>>,
#[serde(rename = "message")]
message: Option<String>,
#[serde(rename = "success")]
success: Option<bool>
}
impl TokenResponse {
pub fn new() -> TokenResponse {
TokenResponse {
data: None,
errors: None,
message: None,
success: None
}
}
pub fn set_data(&mut self, data: ::models::TokenResponseEntry) {
self.data = Some(data);
}
pub fn with_data(mut self, data: ::models::TokenResponseEntry) -> TokenResponse {
self.data = Some(data);
self
}
pub fn data(&self) -> Option<&::models::TokenResponseEntry> {
self.data.as_ref()
}
pub fn reset_data(&mut self) {
self.data = None;
}
pub fn set_errors(&mut self, errors: Vec<::models::Error>) {
self.errors = Some(errors);
}
pub fn with_errors(mut self, errors: Vec<::models::Error>) -> TokenResponse {
self.errors = Some(errors);
self
}
pub fn errors(&self) -> Option<&Vec<::models::Error>> {
self.errors.as_ref()
}
pub fn reset_errors(&mut self) {
self.errors = None;
}
pub fn set_message(&mut self, message: String) {
self.message = Some(message);
}
pub fn with_message(mut self, message: String) -> TokenResponse {
self.message = Some(message);
self
}
pub fn message(&self) -> Option<&String> {
self.message.as_ref()
}
pub fn reset_message(&mut self) {
self.message = None;
}
pub fn set_success(&mut self, success: bool) {
self.success = Some(success);
}
pub fn with_success(mut self, success: bool) -> TokenResponse {
self.success = Some(success);
self
}
pub fn success(&self) -> Option<&bool> {
self.success.as_ref()
}
pub fn reset_success(&mut self) {
self.success = None;
}
}