AI Dev Kit
Search Results for

    Show / Hide Table of Contents

    Class VoiceVerification

    Represents the overall voice verification state and history.

    Inheritance
    object
    VoiceVerification
    Namespace: Glitch9.AIDevKit.ElevenLabs
    Assembly: .dll
    Syntax
    public class VoiceVerification

    Properties

    IsVerified

    Whether this voice has been successfully verified.

    Declaration
    public bool IsVerified { get; set; }
    Property Value
    Type Description
    bool

    Language

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

    Declaration
    public string Language { get; set; }
    Property Value
    Type Description
    string

    RequiresVerification

    Whether this voice requires verification.

    Declaration
    public bool RequiresVerification { get; set; }
    Property Value
    Type Description
    bool

    VerificationAttempts

    A list of all verification attempts made for this voice.

    Declaration
    public List<VerificationAttempt> VerificationAttempts { get; set; }
    Property Value
    Type Description
    List<VerificationAttempt>

    VerificationAttemptsCount

    The number of times a verification attempt has been made.

    Declaration
    public int VerificationAttemptsCount { get; set; }
    Property Value
    Type Description
    int

    VerificationFailures

    A list of reasons why verification failed.

    Declaration
    public List<string> VerificationFailures { get; set; }
    Property Value
    Type Description
    List<string>
    In this article
    Back to top Generated by DocFX