From 3fa765c0ba6ec4756d52bd719c98afd19320ed9f Mon Sep 17 00:00:00 2001 From: Brian Barrow Date: Mon, 10 Apr 2023 13:24:43 -0600 Subject: [PATCH] updated sentiment types --- Deepgram/Transcription/PrerecordedTranscriptionOptions.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Deepgram/Transcription/PrerecordedTranscriptionOptions.cs b/Deepgram/Transcription/PrerecordedTranscriptionOptions.cs index 332ab75c..4c89a30c 100644 --- a/Deepgram/Transcription/PrerecordedTranscriptionOptions.cs +++ b/Deepgram/Transcription/PrerecordedTranscriptionOptions.cs @@ -228,6 +228,12 @@ public class PrerecordedTranscriptionOptions /// Indicates whether Deepgram will identify sentiment in the transcript. /// [JsonProperty("analyze_sentiment")] + public Nullable AnalyzeSentiment { get; set; } = null; + + /// + /// Indicates whether Deepgram will identify sentiment in the audio. + /// + [JsonProperty("sentiment")] public Nullable Sentiment { get; set; } = null; ///