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

com.pengrad.telegrambot.request.GetChatMenuButton Maven / Gradle / Ivy

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

import com.pengrad.telegrambot.response.GetChatMenuButtonResponse;

/**
 * Mirco Ianese
 * 20 Apr 2022
 */
public class GetChatMenuButton extends BaseRequest {
    
    public GetChatMenuButton() {
        super(GetChatMenuButtonResponse.class);
    }

    public GetChatMenuButton chatId(long chatId) {
        return add("chat_id", chatId);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy