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

com.pengrad.telegrambot.response.UserChatBoostsResponse 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;

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