diff --git a/Deepgram/Models/Listen/v1/REST/PreRecordedSchema.cs b/Deepgram/Models/Listen/v1/REST/PreRecordedSchema.cs index cb01271..d235f82 100644 --- a/Deepgram/Models/Listen/v1/REST/PreRecordedSchema.cs +++ b/Deepgram/Models/Listen/v1/REST/PreRecordedSchema.cs @@ -180,6 +180,14 @@ public class PreRecordedSchema [JsonPropertyName("multichannel")] public bool? MultiChannel { get; set; } + /// + /// Numerals converts numbers from written format to numerical format. + /// + /// + [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + [JsonPropertyName("numerals")] + public bool? Numerals { get; set; } + /// /// Enable paragraph detection /// @@ -247,14 +255,6 @@ public class PreRecordedSchema [JsonPropertyName("sentiment")] public bool? Sentiment { get; set; } - /// - /// Numerals converts numbers from written format to numerical format. - /// - /// - [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - [JsonPropertyName("numerals")] - public bool? numerals { get; set; } - /// /// Smart Format formats transcripts to improve readability. /// diff --git a/Deepgram/Models/Listen/v1/WebSocket/LiveSchema.cs b/Deepgram/Models/Listen/v1/WebSocket/LiveSchema.cs index a3f9d3c..b1e97f6 100644 --- a/Deepgram/Models/Listen/v1/WebSocket/LiveSchema.cs +++ b/Deepgram/Models/Listen/v1/WebSocket/LiveSchema.cs @@ -149,6 +149,14 @@ public class LiveSchema [JsonPropertyName("no_delay")] public bool? NoDelay { get; set; } + /// + /// Numerals converts numbers from written format to numerical format. + /// + /// + [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + [JsonPropertyName("numerals")] + public bool? Numerals { get; set; } + /// /// Profanity Filter looks for recognized profanity and converts it to the nearest recognized /// non-profane word or removes it from the transcript completely. @@ -203,14 +211,6 @@ public class LiveSchema [JsonPropertyName("search")] public List? Search { get; set; } - /// - /// Numerals converts numbers from written format to numerical format. - /// - /// - [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - [JsonPropertyName("numerals")] - public bool? numerals { get; set; } - /// /// Smart Format formats transcripts to improve readability. ///