Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 174fdc2

Browse files
committed
undo undesired changes
1 parent f181ba0 commit 174fdc2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.fernignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,6 @@ docfx
5050
Samples
5151

5252
# TODO: remove these ignores when AssemblyAI fixes the API
53-
src/AssemblyAI/Transcripts/Types/ContentSafetyLabel.cs
53+
src/AssemblyAI/Transcripts/Types/ContentSafetyLabel.cs
54+
src/AssemblyAI/Transcripts/Types/ContentSafetyLabelsResult.cs
55+
src/AssemblyAI/Transcripts/Types/TopicDetectionModelResult.cs

src/AssemblyAI/Transcripts/Types/ContentSafetyLabelsResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public record ContentSafetyLabelsResult
1111
/// The status of the Content Moderation model. Either success, or unavailable in the rare case that the model failed.
1212
/// </summary>
1313
[JsonPropertyName("status")]
14-
public required AudioIntelligenceModelStatus Status { get; set; }
14+
public AudioIntelligenceModelStatus Status { get; set; }
1515

1616
/// <summary>
1717
/// An array of results for the Content Moderation model

src/AssemblyAI/Transcripts/Types/TopicDetectionModelResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public record TopicDetectionModelResult
1111
/// The status of the Topic Detection model. Either success, or unavailable in the rare case that the model failed.
1212
/// </summary>
1313
[JsonPropertyName("status")]
14-
public required AudioIntelligenceModelStatus Status { get; set; }
14+
public AudioIntelligenceModelStatus Status { get; set; }
1515

1616
/// <summary>
1717
/// An array of results for the Topic Detection model

0 commit comments

Comments
 (0)