1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* 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,
}
}
}