vapi_client/models/
start_speaking_plan_smart_endpointing_enabled.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, Debug, PartialEq, Serialize, Deserialize)]
15#[serde(untagged)]
16pub enum StartSpeakingPlanSmartEndpointingEnabled {
17    Boolean(bool),
18    String(String),
19}
20
21impl Default for StartSpeakingPlanSmartEndpointingEnabled {
22    fn default() -> Self {
23        Self::Boolean(Default::default())
24    }
25}