Class VoiceLanguage
- Namespace
- Glitch9.AIDevKit.ElevenLabs
Represents a verified language for a voice, including language, model, accent, and preview details.
public class VoiceLanguage
- Inheritance
-
objectVoiceLanguage
Properties
Accent
Optional. The accent of the voice (e.g., "British", "American").
public string Accent { get; set; }
Property Value
- string
Language
The primary language code (e.g., "en", "ko").
public SystemLanguage Language { get; set; }
Property Value
- SystemLanguage
Locale
Optional. The locale code of the voice (e.g., "en-US", "ko-KR").
public string Locale { get; set; }
Property Value
- string
ModelId
The ID of the AI model associated with this language.
public string ModelId { get; set; }
Property Value
- string
PreviewUrl
Optional. A preview URL that demonstrates this voice in the specified language.
public string PreviewUrl { get; set; }
Property Value
- string