thehive_client/models/
add_alert_attachments_201_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AddAlertAttachments201Response {
16 #[serde(rename = "attachments", skip_serializing_if = "Option::is_none")]
17 pub attachments: Option<Vec<models::OutputAttachment>>,
18}
19
20impl AddAlertAttachments201Response {
21 pub fn new() -> AddAlertAttachments201Response {
22 AddAlertAttachments201Response {
23 attachments: None,
24 }
25 }
26}
27