/*
* 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};
/// MarkAll : Mark all inbox messages as read.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct MarkAll {
#[serde(rename = "mark")]
pub mark: String,
}
impl MarkAll {
/// Mark all inbox messages as read.
pub fn new(mark: String) -> MarkAll {
MarkAll {
mark,
}
}
}