Table of Contents

Class Chapter

Namespace
AssemblyAI.Transcripts
Assembly
AssemblyAI.dll
public record Chapter : IEquatable<Chapter>
Inheritance
Chapter
Implements
Inherited Members

Properties

End

The starting time, in milliseconds, for the chapter

[JsonPropertyName("end")]
public required int End { get; set; }

Property Value

int

Gist

An ultra-short summary (just a few words) of the content spoken in the chapter

[JsonPropertyName("gist")]
public required string Gist { get; set; }

Property Value

string

Headline

A single sentence summary of the content spoken during the chapter

[JsonPropertyName("headline")]
public required string Headline { get; set; }

Property Value

string

Start

The starting time, in milliseconds, for the chapter

[JsonPropertyName("start")]
public required int Start { get; set; }

Property Value

int

Summary

A one paragraph summary of the content spoken during the chapter

[JsonPropertyName("summary")]
public required string Summary { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.