Skip to main content

azisaba_graph/models/
patch_note_deleted_event_data.rs

1/*
2 * Azisaba Graph API
3 *
4 * An API for connecting and sharing data across the Azisaba Network.
5 *
6 * The version of the OpenAPI document: 0.0.1
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// PatchNoteDeletedEventData : The data associated with the patch note.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct PatchNoteDeletedEventData {
17    #[serde(rename = "patchNote")]
18    pub patch_note: Box<models::PatchNote>,
19}
20
21impl PatchNoteDeletedEventData {
22    /// The data associated with the patch note.
23    pub fn new(patch_note: models::PatchNote) -> PatchNoteDeletedEventData {
24        PatchNoteDeletedEventData {
25            patch_note: Box::new(patch_note),
26        }
27    }
28}
29