Table of Contents

Class AutoHighlightResult

Namespace
AssemblyAI.Transcripts
Assembly
AssemblyAI.dll
public record AutoHighlightResult : IEquatable<AutoHighlightResult>
Inheritance
AutoHighlightResult
Implements
Inherited Members

Properties

Count

The total number of times the key phrase appears in the audio file

[JsonPropertyName("count")]
public required int Count { get; set; }

Property Value

int

Rank

The total relevancy to the overall audio file of this key phrase - a greater number means more relevant

[JsonPropertyName("rank")]
public required float Rank { get; set; }

Property Value

float

Text

The text itself of the key phrase

[JsonPropertyName("text")]
public required string Text { get; set; }

Property Value

string

Timestamps

The timestamp of the of the key phrase

[JsonPropertyName("timestamps")]
public IEnumerable<Timestamp> Timestamps { get; set; }

Property Value

IEnumerable<Timestamp>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.