com.pengrad.telegrambot.response.UserChatBoostsResponse 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;
import java.util.Arrays;
public class UserChatBoostsResponse extends BaseResponse {
private ChatBoost[] boosts;
public ChatBoost[] boosts() {
return boosts;
}
@Override
public String toString() {
return "UserChatBoostsResponse{" +
"boosts=" + Arrays.toString(boosts) +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy