com.pengrad.telegrambot.response.UserChatBoostsResponse.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.response
import com.pengrad.telegrambot.model.chatboost.ChatBoost
data class UserChatBoostsResponse(private val result: ChatBoosts = ChatBoosts(emptyList())) : BaseResponse() {
data class ChatBoosts(val boosts: List)
fun boosts(): Array {
return result.boosts.toTypedArray()
}
}