Class VoiceVerification
Represents the overall voice verification state and history.
Inherited Members
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
Syntax
public class VoiceVerification
Properties
| Edit this page View SourceIsVerified
Whether this voice has been successfully verified.
Declaration
[JsonProperty("is_verified")]
public bool IsVerified { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Language
The language used for verification attempts (e.g., "en", "ko").
Declaration
[JsonProperty("language")]
public string Language { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RequiresVerification
Whether this voice requires verification.
Declaration
[JsonProperty("requires_verification")]
public bool RequiresVerification { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
VerificationAttempts
A list of all verification attempts made for this voice.
Declaration
[JsonProperty("verification_attempts")]
public List<VerificationAttempt> VerificationAttempts { get; set; }
Property Value
| Type | Description |
|---|---|
| List<VerificationAttempt> |
VerificationAttemptsCount
The number of times a verification attempt has been made.
Declaration
[JsonProperty("verification_attempts_count")]
public int VerificationAttemptsCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
VerificationFailures
A list of reasons why verification failed.
Declaration
[JsonProperty("verification_failures")]
public List<string> VerificationFailures { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |