/*
* Vapi API
*
* Voice AI for developers.
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SmartDenoisingPlan {
/// Whether smart denoising using Krisp is enabled.
#[serde(rename = "enabled", skip_serializing_if = "Option::is_none")]
pub enabled: Option<bool>,
}
impl SmartDenoisingPlan {
pub fn new() -> SmartDenoisingPlan {
SmartDenoisingPlan { enabled: None }
}
}