Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public sealed partial class Transcript
/// Whether custom topics is enabled, either true or false
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("custom_topics")]
[global::System.Obsolete("This property marked as deprecated.")]
public bool? CustomTopics { get; set; }

/// <summary>
Expand Down Expand Up @@ -460,9 +461,6 @@ public sealed partial class Transcript
/// <param name="customSpelling">
/// Customize how words are spelled and formatted using to and from values
/// </param>
/// <param name="customTopics">
/// Whether custom topics is enabled, either true or false
/// </param>
/// <param name="disfluencies">
/// Transcribe Filler Words, like "umm", in your media file; can be true or false
/// </param>
Expand Down Expand Up @@ -632,7 +630,6 @@ public Transcript(
bool? contentSafety,
object? contentSafetyLabels,
global::System.Collections.Generic.IList<global::AssemblyAI.TranscriptCustomSpelling>? customSpelling,
bool? customTopics,
bool? disfluencies,
global::System.Collections.Generic.IList<global::AssemblyAI.Entity>? entities,
bool? entityDetection,
Expand Down Expand Up @@ -691,7 +688,6 @@ public Transcript(
this.ContentSafety = contentSafety;
this.ContentSafetyLabels = contentSafetyLabels;
this.CustomSpelling = customSpelling;
this.CustomTopics = customTopics;
this.Disfluencies = disfluencies;
this.Entities = entities;
this.EntityDetection = entityDetection;
Expand Down
1 change: 1 addition & 0 deletions src/libs/AssemblyAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2825,6 +2825,7 @@ components:
x-label: Custom topics enabled
description: Whether custom topics is enabled, either true or false
type: [boolean, "null"]
deprecated: true

topics:
x-label: Topics
Expand Down