Table of Contents

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

double

End

The ending time, in milliseconds, of the paragraph

[JsonPropertyName("end")]
public required int End { get; set; }

Property Value

int

Start

The starting time, in milliseconds, of the paragraph

[JsonPropertyName("start")]
public required int Start { get; set; }

Property Value

int

Text

The transcript of the paragraph

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

Property Value

string

Words

An array of words in the paragraph

[JsonPropertyName("words")]
public IEnumerable<TranscriptWord> Words { get; set; }

Property Value

IEnumerable<TranscriptWord>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.