Skip to content

Commit

Permalink
removed nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
briancbarrow committed Apr 12, 2023
1 parent 3fa765c commit d6b3f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Deepgram/Transcription/LiveTranscriptionOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public class LiveTranscriptionOptions
/// Can be "false" to disable endpointing, or can be the milliseconds of silence to wait before returning a transcript. Default is 10 milliseconds. Is string here so it can accept "false" as a value.
/// </summary>
[JsonProperty("endpointing")]
public Nullable<string> Endpointing { get; set; } = null;
public string Endpointing { get; set; } = null;

/// <summary>
/// Length of time in milliseconds of silence that voice activation detection (VAD) will use
Expand Down

0 comments on commit d6b3f57

Please sign in to comment.