Segment

@Serializable
data class Segment(    val id: Int,     val seek: Int,     val start: Double,     val end: Double,     val text: String,     val tokens: List<Int>,     val temperature: Double,     val avgLogprob: Double,     val compressionRatio: Double,     val noSpeechProb: Double,     val transient: Boolean? = null)

Constructors

Link copied to clipboard
constructor(    id: Int,     seek: Int,     start: Double,     end: Double,     text: String,     tokens: List<Int>,     temperature: Double,     avgLogprob: Double,     compressionRatio: Double,     noSpeechProb: Double,     transient: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "avg_logprob")
val avgLogprob: Double
Link copied to clipboard
@SerialName(value = "compression_ratio")
val compressionRatio: Double
Link copied to clipboard
@SerialName(value = "end")
val end: Double
Link copied to clipboard
@SerialName(value = "id")
val id: Int
Link copied to clipboard
@SerialName(value = "no_speech_prob")
val noSpeechProb: Double
Link copied to clipboard
@SerialName(value = "seek")
val seek: Int
Link copied to clipboard
@SerialName(value = "start")
val start: Double
Link copied to clipboard
@SerialName(value = "temperature")
val temperature: Double
Link copied to clipboard
@SerialName(value = "text")
val text: String
Link copied to clipboard
@SerialName(value = "tokens")
val tokens: List<Int>
Link copied to clipboard
@SerialName(value = "transient")
val transient: Boolean? = null