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
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct Poa {
#[serde(default, rename = "appointmentTime", skip_serializing_if = "Option::is_none")]
pub appointment_time: Option<Box<crate::models::AppointmentTime>>,
#[serde(default, rename = "technicians", skip_serializing_if = "Option::is_none")]
pub technicians: Option<Vec<crate::models::Technician>>,
#[serde(default, rename = "uploadingTechnician", skip_serializing_if = "Option::is_none")]
pub uploading_technician: Option<String>,
#[serde(default, rename = "uploadTime", skip_serializing_if = "Option::is_none")]
pub upload_time: Option<String>,
#[serde(default, rename = "poaType", skip_serializing_if = "Option::is_none")]
pub poa_type: Option<PoaType>,
}
impl Poa {
pub fn new() -> Poa {
Poa {
appointment_time: None,
technicians: None,
uploading_technician: None,
upload_time: None,
poa_type: None,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum PoaType {
#[serde(rename = "NO_SIGNATURE_DUMMY_POS")]
NOSIGNATUREDUMMYPOS,
#[serde(rename = "CUSTOMER_SIGNATURE")]
CUSTOMERSIGNATURE,
#[serde(rename = "DUMMY_RECEIPT")]
DUMMYRECEIPT,
#[serde(rename = "POA_RECEIPT")]
POARECEIPT,
}
impl Default for PoaType {
fn default() -> PoaType {
Self::NOSIGNATUREDUMMYPOS
}
}