**Kind**: instance method of <code>[TelegramBot](#TelegramBot)</code>
**Kind**: instance method of <code>[TelegramBot](#TelegramBot)</code>
@ -407,6 +408,7 @@ Send .webp stickers.
| chatId | <code>Number</code>|<code>String</code> | Unique identifier for the message recipient |
| chatId | <code>Number</code>|<code>String</code> | Unique identifier for the message recipient |
| sticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | A file path, Stream or Buffer. Can also be a `file_id` previously uploaded. Stickers are WebP format files. |
| sticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | A file path, Stream or Buffer. Can also be a `file_id` previously uploaded. Stickers are WebP format files. |
Use this method to upload a .png file with a sticker for later use in *createNewStickerSet* and *addStickerToSet* methods (can be used multiple
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](https://core.telegram.org/bots/api#file) on success.
times). Returns the uploaded [File](https://core.telegram.org/bots/api#file) on success.
@ -1166,10 +1169,11 @@ times). Returns the uploaded [File](https://core.telegram.org/bots/api#file) on
| userId | <code>Number</code> | User identifier of sticker file owner |
| userId | <code>Number</code> | User identifier of sticker file owner |
| pngSticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | A file path or a Stream. Can also be a `file_id` previously uploaded. **Png** image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. |
| pngSticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | A file path or a Stream. Can also be a `file_id` previously uploaded. **Png** image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. |
Use this method to create new sticker set owned by a user.
Use this method to create new sticker set owned by a user.
The bot will be able to edit the created sticker set.
The bot will be able to edit the created sticker set.
Returns True on success.
Returns True on success.
@ -1189,10 +1193,11 @@ Returns True on success.
| pngSticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | Png image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. |
| pngSticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | Png image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. |
| emojis | <code>String</code> | One or more emoji corresponding to the sticker |
| emojis | <code>String</code> | One or more emoji corresponding to the sticker |
Use this method to add a new sticker to a set created by the bot.
Use this method to add a new sticker to a set created by the bot.
Returns True on success.
Returns True on success.
@ -1210,6 +1215,7 @@ Returns True on success.
| pngSticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | Png image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px |
| pngSticker | <code>String</code>|<code>stream.Stream</code>|<code>Buffer</code> | Png image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px |
| emojis | <code>String</code> | One or more emoji corresponding to the sticker |
| emojis | <code>String</code> | One or more emoji corresponding to the sticker |