MadelineProto/docs/TD_docs/constructors/updateStickerSets.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

971 B

title description
updateStickerSets List of installed sticker sets was updated

Constructor: updateStickerSets

Back to constructors index

List of installed sticker sets was updated

Attributes:

Name Type Required Description
is_masks Bool Yes True, if list of installed mask sticker sets was updated
sticker_set_ids Array of long Yes New list of installed sticker sets

Type: Update

Example:

$updateStickerSets = ['_' => 'updateStickerSets', 'is_masks' => Bool, 'sticker_set_ids' => [long]];

PWRTelegram json-encoded version:

{"_": "updateStickerSets", "is_masks": Bool, "sticker_set_ids": [long]}

Or, if you're into Lua:

updateStickerSets={_='updateStickerSets', is_masks=Bool, sticker_set_ids={long}}