/*
* 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};
/// UpdateNotificationGroup : Update a notification group name.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateNotificationGroup {
/// Display name.
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub name: Option<Option<String>>,
}
impl UpdateNotificationGroup {
/// Update a notification group name.
pub fn new() -> UpdateNotificationGroup {
UpdateNotificationGroup {
name: None,
}
}
}