AudioInfo

@JsonClass(generateAdapter = true)
data class AudioInfo(    @Json(name = "mimetype") val mimeType: String? = null,     @Json(name = "size") val size: Long? = null,     @Json(name = "duration") val duration: Int? = null)

Constructors

Link copied to clipboard
fun AudioInfo(    @Json(name = "mimetype") mimeType: String? = null,     @Json(name = "size") size: Long? = null,     @Json(name = "duration") duration: Int? = null)

Properties

Link copied to clipboard
val duration: Int? = null

The duration of the audio in milliseconds.

Link copied to clipboard
val mimeType: String? = null

The mimetype of the audio e.g. "audio/aac".

Link copied to clipboard
val size: Long? = null

The size of the audio clip in bytes.