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
/// ClusterOwner : Cluster contact info settings.

#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct ClusterOwner {
    /// Cluster owner company name.
    #[serde(rename = "company")]
    pub company: Option<String>,
    /// Cluster owner location.
    #[serde(rename = "location")]
    pub location: Option<String>,
    /// Cluster owner primary email address.
    #[serde(rename = "primary_email")]
    pub primary_email: Option<String>,
    /// Cluster owner primary contact name.
    #[serde(rename = "primary_name")]
    pub primary_name: Option<String>,
    /// Cluster owner primary contact phone number 1.
    #[serde(rename = "primary_phone1")]
    pub primary_phone1: Option<String>,
    /// Cluster owner primary contact phone number 2.
    #[serde(rename = "primary_phone2")]
    pub primary_phone2: Option<String>,
    /// Cluster owner secondary email address.
    #[serde(rename = "secondary_email")]
    pub secondary_email: Option<String>,
    /// Cluster owner secondary contact name.
    #[serde(rename = "secondary_name")]
    pub secondary_name: Option<String>,
    /// Cluster owner secondary contact phone number 1.
    #[serde(rename = "secondary_phone1")]
    pub secondary_phone1: Option<String>,
    /// Cluster owner secondary contact phone number 2.
    #[serde(rename = "secondary_phone2")]
    pub secondary_phone2: Option<String>,
}