vapi_client/models/gladia_transcriber_model.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/// GladiaTranscriberModel : This is the Gladia model that will be used. Default is 'fast'
15/// This is the Gladia model that will be used. Default is 'fast'
16#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
17#[serde(untagged)]
18pub enum GladiaTranscriberModel {
19 String(String),
20}
21
22impl Default for GladiaTranscriberModel {
23 fn default() -> Self {
24 Self::String(Default::default())
25 }
26}
27