Search Results for

    Show / Hide Table of Contents

    Class VerificationAttempt

    Represents a single attempt to verify a voice.

    Inheritance
    object
    VerificationAttempt
    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 VerificationAttempt

    Properties

    | Edit this page View Source

    Accepted

    Whether this verification attempt was accepted.

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

    DateUnix

    The time the attempt was made, in Unix time.

    Declaration
    [JsonProperty("date_unix")]
    public long DateUnix { get; set; }
    Property Value
    Type Description
    long
    | Edit this page View Source

    LevenshteinDistance

    The Levenshtein distance between expected and actual text (lower is better).

    Declaration
    [JsonProperty("levenshtein_distance")]
    public double LevenshteinDistance { get; set; }
    Property Value
    Type Description
    double
    | Edit this page View Source

    Recording

    The recording used in this verification attempt.

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

    Similarity

    The similarity score between the original and the attempt (higher is better).

    Declaration
    [JsonProperty("similarity")]
    public double Similarity { get; set; }
    Property Value
    Type Description
    double
    | Edit this page View Source

    Text

    The text used during the verification attempt.

    Declaration
    [JsonProperty("text")]
    public string Text { get; set; }
    Property Value
    Type Description
    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