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
/// 3.2.21 Object: Data
///
/// The data and segment objects together allow additional data about the related object (e.g.,
/// user, content) to be specified. This data may be from multiple sources whether from the exchange
/// itself or third parties as specified by the id field. A bid request can mix data objects from
/// multiple providers. The specific data providers in use should be published by the exchange a
/// priori to its bidders.
#[derive(serde::Serialize, serde::Deserialize, Default, Debug, PartialEq, Clone)]
pub struct Data {
    /// string
    /// Exchange-specific ID for the data provider.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,

    /// string
    /// Exchange-specific name for the data provider.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    /// object array
    /// Array of Segment (Section 3.2.22) objects that contain the actual data values.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub segment: Option<Vec<crate::Segment>>,

    /// object
    /// Placeholder for exchange-specific extensions to OpenRTB.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ext: Option<serde_json::Map<String, serde_json::Value>>,
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn json() -> serde_json::Result<()> {
        let json = "{}";
        let o1 = Data::default();
        assert_eq!(serde_json::to_string(&o1)?, json);
        assert_eq!(o1, serde_json::from_str::<Data>(json)?);

        Ok(())
    }
}