Class Entity
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record Entity : IEquatable<Entity>
- Inheritance
-
Entity
- Implements
- Inherited Members
Properties
End
The ending time, in milliseconds, for the detected entity in the audio file
[JsonPropertyName("end")]
public required int End { get; set; }
Property Value
EntityType
The type of entity for the detected entity
[JsonPropertyName("entity_type")]
public required EntityType EntityType { get; set; }
Property Value
Start
The starting time, in milliseconds, at which the detected entity appears in the audio file
[JsonPropertyName("start")]
public required int Start { get; set; }
Property Value
Text
The text for the detected entity
[JsonPropertyName("text")]
public required string Text { 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.