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

com.pengrad.telegrambot.model.botcommandscope.BotCommandsScopeChat Maven / Gradle / Ivy

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

public class BotCommandsScopeChat extends BotCommandScope {
    
    private Object chat_id;

    /**
     * 
     * @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
     */
    public BotCommandsScopeChat(Object chatId) {
        this.type = "chat";
        this.chat_id = chatId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy