All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pengrad.telegrambot.response.UserChatBoostsResponse.kt Maven / Gradle / Ivy

There is a newer version: 7.11.0
Show newest version
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()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy