enbbox 1.0.1

Notification infrastructure API — open-source alternative to Novu/Courier
Documentation
/*
 * enbbox API
 *
 * Notification infrastructure API — open-source alternative to Novu/Courier
 *
 * The version of the OpenAPI document: 1.0.0
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// TriggerResult : Acknowledgement returned after a trigger event is accepted by the system.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TriggerResult {
    /// Whether the event was accepted for processing.
    #[serde(rename = "acknowledged")]
    pub acknowledged: bool,
    /// Processing status of the trigger.
    #[serde(rename = "status")]
    pub status: models::TriggerStatus,
    /// Unique transaction identifier for tracking this trigger.
    #[serde(rename = "transaction_id")]
    pub transaction_id: String,
}

impl TriggerResult {
    /// Acknowledgement returned after a trigger event is accepted by the system.
    pub fn new(acknowledged: bool, status: models::TriggerStatus, transaction_id: String) -> TriggerResult {
        TriggerResult {
            acknowledged,
            status,
            transaction_id,
        }
    }
}