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

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

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

import com.pengrad.telegrambot.response.BaseResponse;

/**
 * Mirco Ianese
 * 07 December 2021
 */
public class UnbanChatSenderChat extends BaseRequest {

    public UnbanChatSenderChat(Object chatId, long sender_chat_id) {
        super(BaseResponse.class);
        add("chat_id", chatId).add("sender_chat_id", sender_chat_id);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy