Class ParagraphsResponse
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record ParagraphsResponse : IEquatable<ParagraphsResponse>
- Inheritance
-
ParagraphsResponse
- Implements
- Inherited Members
Properties
AudioDuration
The duration of the audio file in seconds
[JsonPropertyName("audio_duration")]
public required double AudioDuration { get; set; }
Property Value
Confidence
The confidence score for the transcript
[JsonPropertyName("confidence")]
public required double Confidence { get; set; }
Property Value
Id
The unique identifier of your transcript
[JsonPropertyName("id")]
public required string Id { get; set; }
Property Value
Paragraphs
An array of paragraphs in the transcript
[JsonPropertyName("paragraphs")]
public IEnumerable<TranscriptParagraph> Paragraphs { 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.