Search Results for

    Show / Hide Table of Contents

    Class VoiceVerification

    Represents the overall voice verification state and history.

    Inheritance
    object
    VoiceVerification
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.ElevenLabs
    Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
    Syntax
    public class VoiceVerification

    Properties

    | Edit this page View Source

    IsVerified

    Whether this voice has been successfully verified.

    Declaration
    [JsonProperty("is_verified")]
    public bool IsVerified { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Language

    The language used for verification attempts (e.g., "en", "ko").

    Declaration
    [JsonProperty("language")]
    public string Language { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    RequiresVerification

    Whether this voice requires verification.

    Declaration
    [JsonProperty("requires_verification")]
    public bool RequiresVerification { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    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>
    | Edit this page View Source

    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
    | Edit this page View Source

    VerificationFailures

    A list of reasons why verification failed.

    Declaration
    [JsonProperty("verification_failures")]
    public List<string> VerificationFailures { get; set; }
    Property Value
    Type Description
    List<string>

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation