TDLightTelegramBots/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/api/methods/stickers/SetCustomEmojiStickerSetThu...

66 lines
1.7 KiB
Java

package org.telegram.telegrambots.meta.api.methods.stickers;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import org.telegram.telegrambots.meta.api.methods.botapimethods.BotApiMethodBoolean;
import org.telegram.telegrambots.meta.exceptions.TelegramApiValidationException;
/**
* @author Ruben Bermudez
* @version 6.6
* Use this method to set the thumbnail of a custom emoji sticker set.
*
* Returns True on success.
*
*/
@EqualsAndHashCode(callSuper = false)
@Getter
@Setter
@ToString
@NoArgsConstructor(force = true)
@RequiredArgsConstructor
@AllArgsConstructor
@Builder
public class SetCustomEmojiStickerSetThumbnail extends BotApiMethodBoolean {
public static final String PATH = "setStickerSetThumb";
public static final String NAME_FIELD = "name";
public static final String CUSTOM_EMOJI_ID_FIELD = "custom_emoji_id";
/**
* Sticker set name
*/
@NonNull
@JsonProperty(NAME_FIELD)
private String name;
/**
* Optional.
*
* Custom emoji identifier of a sticker from the sticker set;
* pass an empty string to drop the thumbnail and use the first sticker as the thumbnail.
*/
@JsonProperty(CUSTOM_EMOJI_ID_FIELD)
private String customEmojiId;
@Override
public String getMethod() {
return PATH;
}
@Override
public void validate() throws TelegramApiValidationException {
if (name.isEmpty()) {
throw new TelegramApiValidationException("name can't be null", this);
}
}
}