vapi_client/models/smart_denoising_plan.rs
1/*
2 * Vapi API
3 *
4 * Voice AI for developers.
5 *
6 * The version of the OpenAPI document: 1.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SmartDenoisingPlan {
16 /// Whether smart denoising using Krisp is enabled.
17 #[serde(rename = "enabled", skip_serializing_if = "Option::is_none")]
18 pub enabled: Option<bool>,
19}
20
21impl SmartDenoisingPlan {
22 pub fn new() -> SmartDenoisingPlan {
23 SmartDenoisingPlan { enabled: None }
24 }
25}