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

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

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

import com.pengrad.telegrambot.response.BaseResponse;

/**
 * Stas Parshin
 * 01 January 2020
 */
public class SetChatAdministratorCustomTitle extends BaseRequest {

    public SetChatAdministratorCustomTitle(Object chatId, long userId, String customTitle) {
        super(BaseResponse.class);
        add("chat_id", chatId).add("user_id", userId).add("custom_title", customTitle);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy