1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct DedupeReport {
    /// The phase of the job this report was generated for.
    #[serde(rename = "phase")]
    pub phase: Option<i32>,
    /// The report results.
    #[serde(rename = "results")]
    pub results: Option<String>,
    /// The time this report was generated in Unix epoch seconds.
    #[serde(rename = "time")]
    pub time: Option<i32>,
}