Class WordSearchResponse
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record WordSearchResponse : IEquatable<WordSearchResponse>
- Inheritance
-
WordSearchResponse
- Implements
- Inherited Members
Properties
Id
The ID of the transcript
[JsonPropertyName("id")]
public required string Id { get; set; }
Property Value
Matches
The matches of the search
[JsonPropertyName("matches")]
public IEnumerable<WordSearchMatch> Matches { get; set; }
Property Value
TotalCount
The total count of all matched instances. For e.g., word 1 matched 2 times, and word 2 matched 3 times, total_count
will equal 5.
[JsonPropertyName("total_count")]
public required int TotalCount { 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.