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

pro.zackpollard.telegrambot.api.chat.SuperGroupChat Maven / Gradle / Ivy

package pro.zackpollard.telegrambot.api.chat;

/**
 * @author Zack Pollard
 */
public interface SuperGroupChat extends GroupChat {

    default ChatType getType() {

        return ChatType.SUPERGROUP;
    }

    String getUsername();

    boolean kickChatMember(int userId);

    boolean unbanChatMember(int userId);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy