Class TopicDetectionResult
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record TopicDetectionResult : IEquatable<TopicDetectionResult>
- Inheritance
-
TopicDetectionResult
- Implements
- Inherited Members
Properties
Labels
An array of detected topics in the text
[JsonPropertyName("labels")]
public IEnumerable<TopicDetectionResultLabelsItem>? Labels { get; set; }
Property Value
Text
The text in the transcript in which a detected topic occurs
[JsonPropertyName("text")]
public required string Text { get; set; }
Property Value
Timestamp
[JsonPropertyName("timestamp")]
public Timestamp? Timestamp { 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.