mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 00:26:57 +01:00
1.0 KiB
1.0 KiB
title | description |
---|---|
updateRecentStickers | List of recently used stickers was updated |
Constructor: updateRecentStickers
List of recently used stickers was updated
Attributes:
Name | Type | Required | Description |
---|---|---|---|
is_attached | Bool | Yes | True, if the list of stickers attached to photo or video files was updated, otherwise the list of sent stickers is updated |
sticker_ids | Array of int | Yes | New list of recently used stickers |
Type: Update
Example:
$updateRecentStickers = ['_' => 'updateRecentStickers', 'is_attached' => Bool, 'sticker_ids' => [int], ];
PWRTelegram json-encoded version:
{"_":"updateRecentStickers","is_attached":"Bool","sticker_ids":["int"]}
Or, if you're into Lua:
updateRecentStickers={_='updateRecentStickers', is_attached=Bool, sticker_ids={int}, }