Class VoiceVerification
- Namespace
- Glitch9.AIDevKit.ElevenLabs
Represents the overall voice verification state and history.
public class VoiceVerification
- Inheritance
-
objectVoiceVerification
Properties
IsVerified
Whether this voice has been successfully verified.
public bool IsVerified { get; set; }
Property Value
- bool
Language
The language used for verification attempts (e.g., "en", "ko").
public string Language { get; set; }
Property Value
- string
RequiresVerification
Whether this voice requires verification.
public bool RequiresVerification { get; set; }
Property Value
- bool
VerificationAttempts
A list of all verification attempts made for this voice.
public List<VerificationAttempt> VerificationAttempts { get; set; }
Property Value
- List<VerificationAttempt>
VerificationAttemptsCount
The number of times a verification attempt has been made.
public int VerificationAttemptsCount { get; set; }
Property Value
- int
VerificationFailures
A list of reasons why verification failed.
public List<string> VerificationFailures { get; set; }
Property Value
- List<string>