Skip to content

Commit

Permalink
fix(audio): Segment#transient property nullable (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlee-dev authored Jul 15, 2023
1 parent 49fc161 commit 57ffb63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ public data class Segment(
@SerialName("avg_logprob") val avgLogprob: Double,
@SerialName("compression_ratio") val compressionRatio: Double,
@SerialName("no_speech_prob") val noSpeechProb: Double,
@SerialName("transient") val transient: Boolean,
@SerialName("transient") val transient: Boolean? = null,
)

0 comments on commit 57ffb63

Please sign in to comment.