1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// CreateAntivirusScanItemResponse : The result of a manual antivirus scan.

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

#[derive(Debug, Serialize, Deserialize)]
pub struct CreateAntivirusScanItemResponse {
    /// The ID for the report for this scan. A report ID will be generated if one is not provided.
    #[serde(rename = "report_id")]
    pub report_id: Option<String>,
    /// The result of the scan.
    #[serde(rename = "result")]
    pub result: Option<String>,
}