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

com.pengrad.telegrambot.response.MessagesResponse Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
package com.pengrad.telegrambot.response;

import com.pengrad.telegrambot.model.Message;

import java.util.Arrays;

/**
 * Stas Parshin
 * 23 November 2017
 */
public class MessagesResponse extends BaseResponse {

    private Message[] result;

    MessagesResponse() {
    }

    public Message[] messages() {
        return result;
    }

    @Override
    public String toString() {
        return "MessagesResponse{" +
                "result=" + Arrays.toString(result) +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy