vapi_client/models/gladia_transcriber_model.rs
1/*
2 * Vapi API
3 *
4 * API for building voice assistants
5 *
6 * The version of the OpenAPI document: 1.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use serde::{Deserialize, Serialize};
12use utoipa::ToSchema;
13
14
15use crate::models;
16
17/// GladiaTranscriberModel : This is the Gladia model that will be used. Default is 'fast'
18/// This is the Gladia model that will be used. Default is 'fast'
19#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, ToSchema)]
20#[serde(untagged)]
21pub enum GladiaTranscriberModel {
22 String(String),
23}
24
25impl Default for GladiaTranscriberModel {
26 fn default() -> Self {
27 Self::String(Default::default())
28 }
29}