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

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

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

import java.util.Objects;

import com.pengrad.telegrambot.model.BotDescription;

public class GetMyDescriptionResponse extends BaseResponse {

    private BotDescription result;

    public BotDescription botDescription() {
        return result;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy