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

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

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

import com.pengrad.telegrambot.model.ChatMember;

/**
 * Stas Parshin
 * 28 May 2016
 */
public class GetChatMemberResponse extends BaseResponse {

    private ChatMember result;

    public ChatMember chatMember() {
        return result;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy