Skip to content

Commit

Permalink
updated sentiment types
Browse files Browse the repository at this point in the history
  • Loading branch information
briancbarrow committed Apr 10, 2023
1 parent 1b0d24d commit 3fa765c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Deepgram/Transcription/PrerecordedTranscriptionOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ public class PrerecordedTranscriptionOptions
/// Indicates whether Deepgram will identify sentiment in the transcript.
/// </summary>
[JsonProperty("analyze_sentiment")]
public Nullable<bool> AnalyzeSentiment { get; set; } = null;

/// <summary>
/// Indicates whether Deepgram will identify sentiment in the audio.
/// </summary>
[JsonProperty("sentiment")]
public Nullable<bool> Sentiment { get; set; } = null;

/// <summary>
Expand Down

0 comments on commit 3fa765c

Please sign in to comment.