use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct VulnerabilityAllOfEnisaIdVendor {
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[serde(rename = "vendor", skip_serializing_if = "Option::is_none")]
pub vendor: Option<Box<models::VulnerabilityAllOfProduct>>,
}
impl VulnerabilityAllOfEnisaIdVendor {
pub fn new() -> VulnerabilityAllOfEnisaIdVendor {
VulnerabilityAllOfEnisaIdVendor {
id: None,
vendor: None,
}
}
}