Class SentencesResponse
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record SentencesResponse : IEquatable<SentencesResponse>
- Inheritance
-
SentencesResponse
- 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 for the transcript
[JsonPropertyName("id")]
public required string Id { get; set; }
Property Value
Sentences
An array of sentences in the transcript
[JsonPropertyName("sentences")]
public IEnumerable<TranscriptSentence> Sentences { 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.