com.pengrad.telegrambot.request.SetStickerSetThumbnail 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;
/**
* Stas Parshin
* 31 March 2020
*/
public class SetStickerSetThumbnail extends AbstractUploadRequest {
public SetStickerSetThumbnail(String name, Long userId, Object thumbnail) {
super(BaseResponse.class, "thumbnail", thumbnail);
add("name", name);
add("user_id", userId);
}
public SetStickerSetThumbnail(String name, Long userId) {
super(BaseResponse.class, "name", name);
add("user_id", userId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy