Skip to content

Commit

Permalink
chore: made Segment's transient property nullable, and added default …
Browse files Browse the repository at this point in the history
…value 'null'
  • Loading branch information
charlee-dev committed Jul 11, 2023
1 parent 49fc161 commit f544667
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 f544667

Please sign in to comment.