/*
* Tapis Notifications API
*
* The Tapis Notifications API provides for management of subscriptions and event publication
*
* The version of the OpenAPI document: 25Q4.0
* Contact: cicsupport@tacc.utexas.edu
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ResultBoolean {
#[serde(rename = "aBool", skip_serializing_if = "Option::is_none")]
pub a_bool: Option<bool>,
}
impl ResultBoolean {
pub fn new() -> ResultBoolean {
ResultBoolean { a_bool: None }
}
}