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};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PreviewResult {
    #[serde(rename = "rendered")]
    pub rendered: String,
}

impl PreviewResult {
    pub fn new(rendered: String) -> PreviewResult {
        PreviewResult {
            rendered,
        }
    }
}