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

com.pengrad.telegrambot.request.SetStickerSetThumbnail 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;

/**
 * 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 - 2024 Weber Informatics LLC | Privacy Policy