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

/// LayoutPreviewResult : Result of a layout preview rendering.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct LayoutPreviewResult {
    #[serde(rename = "rendered")]
    pub rendered: String,
}

impl LayoutPreviewResult {
    /// Result of a layout preview rendering.
    pub fn new(rendered: String) -> LayoutPreviewResult {
        LayoutPreviewResult {
            rendered,
        }
    }
}