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

Commit f181ba0

Browse files
committed
SDK regeneration
1 parent 82384b4 commit f181ba0

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/AssemblyAI.Test/Core/EnumSerializerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace AssemblyAI.Test.Core
99
{
1010
[TestFixture]
11-
public class EnumSerializerTests
11+
public class StringEnumSerializerTests
1212
{
1313
private static readonly JsonSerializerOptions JsonOptions = new() { WriteIndented = true };
1414

src/AssemblyAI/AssemblyAI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
<Project Sdk="Microsoft.NET.Sdk">
23

34
<PropertyGroup>

src/AssemblyAI/Transcripts/Types/ContentSafetyLabelsResult.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Text.Json.Serialization;
22
using AssemblyAI.Core;
3-
using AssemblyAI.Transcripts;
43

54
#nullable enable
65

@@ -12,7 +11,7 @@ public record ContentSafetyLabelsResult
1211
/// The status of the Content Moderation model. Either success, or unavailable in the rare case that the model failed.
1312
/// </summary>
1413
[JsonPropertyName("status")]
15-
public AudioIntelligenceModelStatus Status { get; set; }
14+
public required AudioIntelligenceModelStatus Status { get; set; }
1615

1716
/// <summary>
1817
/// An array of results for the Content Moderation model

src/AssemblyAI/Transcripts/Types/TopicDetectionModelResult.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Text.Json.Serialization;
2-
using AssemblyAI.Transcripts;
32
using AssemblyAI.Core;
43

54
#nullable enable
@@ -12,7 +11,7 @@ public record TopicDetectionModelResult
1211
/// The status of the Topic Detection model. Either success, or unavailable in the rare case that the model failed.
1312
/// </summary>
1413
[JsonPropertyName("status")]
15-
public AudioIntelligenceModelStatus Status { get; set; }
14+
public required AudioIntelligenceModelStatus Status { get; set; }
1615

1716
/// <summary>
1817
/// An array of results for the Topic Detection model

0 commit comments

Comments
 (0)