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
/*
 * Selling Partner API for Services
 *
 * With the Services API, you can build applications that help service providers get and modify their service orders and manage their resources.
 *
 * The version of the OpenAPI document: v1
 * 
 * Generated by: https://openapi-generator.tech
 */

/// Poa : Proof of Appointment (POA) details.



#[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>>,
    /// A list of technicians.
    #[serde(default, rename = "technicians", skip_serializing_if = "Option::is_none")]
    pub technicians: Option<Vec<crate::models::Technician>>,
    /// The identifier of the technician who uploaded the POA.
    #[serde(default, rename = "uploadingTechnician", skip_serializing_if = "Option::is_none")]
    pub uploading_technician: Option<String>,
    /// The date and time when the POA was uploaded in ISO 8601 format.
    #[serde(default, rename = "uploadTime", skip_serializing_if = "Option::is_none")]
    pub upload_time: Option<String>,
    /// The type of POA uploaded.
    #[serde(default, rename = "poaType", skip_serializing_if = "Option::is_none")]
    pub poa_type: Option<PoaType>,
}

impl Poa {
    /// Proof of Appointment (POA) details.
    pub fn new() -> Poa {
        Poa {
            appointment_time: None,
            technicians: None,
            uploading_technician: None,
            upload_time: None,
            poa_type: None,
        }
    }
}

/// The type of POA uploaded.
#[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
    }
}