Table of Contents

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

int

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

IEnumerable<int>

Text

The matched word

[JsonPropertyName("text")]
public required string Text { get; set; }

Property Value

string

Timestamps

An array of timestamps

[JsonPropertyName("timestamps")]
public IEnumerable<IEnumerable<int>> Timestamps { get; set; }

Property Value

IEnumerable<IEnumerable<int>>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.