1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Serialize)]
pub struct PersonalRegistrationCreate {
    #[serde(rename = "{http://www.nic.name/epp/persReg-1.0}persReg:consentID")]
    pub consent_id: String,
}

#[derive(Debug, Deserialize)]
pub struct PersonalRegistrationCreateData {
    #[serde(rename = "{http://www.nic.name/epp/persReg-1.0}bundledRate")]
    pub bundled_rate: bool,
}

#[derive(Debug, Deserialize)]
pub struct PersonalRegistrationInfoData {
    #[serde(rename = "{http://www.nic.name/epp/persReg-1.0}consentID")]
    pub consent_id: String,
}