com.pengrad.telegrambot.request.SetStickerSetTitle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.request;
import com.pengrad.telegrambot.response.BaseResponse;
public class SetStickerSetTitle extends BaseRequest {
/**
*
* @param name Sticker set name
* @param title Sticker set title, 1-64 characters
*/
public SetStickerSetTitle(String name, String title) {
super(BaseResponse.class);
add("name", name);
add("title", title);
}
}