Class WordSearchMatch
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record WordSearchMatch : IEquatable<WordSearchMatch>
- Inheritance
-
WordSearchMatch
- Implements
- Inherited Members
Properties
Count
The total amount of times the word is in the transcript
[JsonPropertyName("count")]
public required int Count { get; set; }
Property Value
Indexes
An array of all index locations for that word within the words
array of the completed transcript
[JsonPropertyName("indexes")]
public IEnumerable<int> Indexes { get; set; }
Property Value
Text
The matched word
[JsonPropertyName("text")]
public required string Text { get; set; }
Property Value
Timestamps
An array of timestamps
[JsonPropertyName("timestamps")]
public IEnumerable<IEnumerable<int>> Timestamps { 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.