
com.pengrad.telegrambot.model.Audio.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.model
/**
* stas
* 8/5/15.
*/
data class Audio(
@get:JvmName("fileId") val fileId: String? = null,
@get:JvmName("fileUniqueId") val fileUniqueId: String? = null,
@get:JvmName("duration") val duration: Int? = null,
@get:JvmName("performer") val performer: String? = null,
@get:JvmName("title") val title: String? = null,
@get:JvmName("fileName") val fileName: String? = null,
@get:JvmName("mimeType") val mimeType: String? = null,
@get:JvmName("fileSize") val fileSize: Long? = null,
@get:JvmName("thumbnail") val thumbnail: PhotoSize? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy