Skip to content

Commit

Permalink
Merge pull request #138 from deepgram/fix-missing-speaker-in-paragraph
Browse files Browse the repository at this point in the history
Add speaker to the paragraph object
  • Loading branch information
jpvajda authored Sep 18, 2023
2 parents 51b9390 + 6f158f4 commit a33a2b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Deepgram/Models/Paragraph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,11 @@ public class Paragraph
/// </summary>
[JsonProperty("num_words")]
public int NumberOfWords { get; set; }

/// <summary>
/// Speaker of the paragraph
/// </summary>
[JsonProperty("speaker")]
public string Speaker { get; set; }
}
}

0 comments on commit a33a2b5

Please sign in to comment.