/*
* 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};
/// AzureVoiceVoiceId : This is the provider-specific ID that will be used.
/// This is the provider-specific ID that will be used.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum AzureVoiceVoiceId {
PresetVoiceOptions(String),
AzureVoiceId(String),
}
impl Default for AzureVoiceVoiceId {
fn default() -> Self {
Self::PresetVoiceOptions(Default::default())
}
}