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

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

import java.util.List;

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

    private List result;

    public List administrators() {
        return result;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy