Table of Contents

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

string

Matches

The matches of the search

[JsonPropertyName("matches")]
public IEnumerable<WordSearchMatch> Matches { get; set; }

Property Value

IEnumerable<WordSearchMatch>

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

int

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.