Class UploadStickerFile
- java.lang.Object
-
- org.telegram.telegrambots.meta.api.methods.PartialBotApiMethod<File>
-
- org.telegram.telegrambots.meta.api.methods.stickers.UploadStickerFile
-
- All Implemented Interfaces:
Validable
public class UploadStickerFile extends PartialBotApiMethod<File>
- Version:
- 1.0 Use this method to upload a .png file with a sticker for later use in createNewStickerSet and addStickerToSet methods (can be used multiple times). Returns the uploaded File on success.
- Author:
- Ruben Bermudez
-
-
Field Summary
Fields Modifier and Type Field Description static StringPATHstatic StringPNGSTICKER_FIELDstatic StringUSERID_FIELD-
Fields inherited from class org.telegram.telegrambots.meta.api.methods.PartialBotApiMethod
OBJECT_MAPPER
-
-
Constructor Summary
Constructors Constructor Description UploadStickerFile()UploadStickerFile(Integer userId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FiledeserializeResponse(String answer)Deserialize a json answer to the response type to a methodInputFilegetPngSticker()IntegergetUserId()UploadStickerFilesetPngSticker(File pngSticker)UploadStickerFilesetPngSticker(String pngStickerName, InputStream pngStickerStream)UploadStickerFilesetUserId(Integer userId)StringtoString()voidvalidate()Validates that mandatory fields are filled and optional objects
-
-
-
Field Detail
-
PATH
public static final String PATH
- See Also:
- Constant Field Values
-
USERID_FIELD
public static final String USERID_FIELD
- See Also:
- Constant Field Values
-
PNGSTICKER_FIELD
public static final String PNGSTICKER_FIELD
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UploadStickerFile
public UploadStickerFile()
-
UploadStickerFile
public UploadStickerFile(Integer userId)
-
-
Method Detail
-
deserializeResponse
public File deserializeResponse(String answer) throws TelegramApiRequestException
Description copied from class:PartialBotApiMethodDeserialize a json answer to the response type to a method- Specified by:
deserializeResponsein classPartialBotApiMethod<File>- Parameters:
answer- Json answer received- Returns:
- Answer for the method
- Throws:
TelegramApiRequestException
-
validate
public void validate() throws TelegramApiValidationExceptionDescription copied from interface:ValidableValidates that mandatory fields are filled and optional objects- Throws:
TelegramApiValidationException- If any mandatory field is empty
-
getUserId
public Integer getUserId()
-
setUserId
public UploadStickerFile setUserId(Integer userId)
-
getPngSticker
public InputFile getPngSticker()
-
setPngSticker
public UploadStickerFile setPngSticker(File pngSticker)
-
setPngSticker
public UploadStickerFile setPngSticker(String pngStickerName, InputStream pngStickerStream)
-
-