Class TranscriptParagraph
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record TranscriptParagraph : IEquatable<TranscriptParagraph>
- Inheritance
-
TranscriptParagraph
- Implements
- Inherited Members
Properties
Confidence
The confidence score for the transcript of this paragraph
[JsonPropertyName("confidence")]
public required double Confidence { get; set; }
Property Value
End
The ending time, in milliseconds, of the paragraph
[JsonPropertyName("end")]
public required int End { get; set; }
Property Value
Start
The starting time, in milliseconds, of the paragraph
[JsonPropertyName("start")]
public required int Start { get; set; }
Property Value
Text
The transcript of the paragraph
[JsonPropertyName("text")]
public required string Text { get; set; }
Property Value
Words
An array of words in the paragraph
[JsonPropertyName("words")]
public IEnumerable<TranscriptWord> Words { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.