1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
messages.featuredStickers | messages_featuredStickers attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messages.featuredStickers
Attributes:
Name | Type | Required |
---|---|---|
hash | int | Yes |
sets | Array of StickerSetCovered | Yes |
unread | Array of long | Yes |
Type: messages_FeaturedStickers
Example:
$messages_featuredStickers = ['_' => 'messages.featuredStickers', 'hash' => int, 'sets' => [StickerSetCovered, StickerSetCovered], 'unread' => [long, long]];
PWRTelegram json-encoded version:
{"_": "messages.featuredStickers", "hash": int, "sets": [StickerSetCovered], "unread": [long]}
Or, if you're into Lua:
messages_featuredStickers={_='messages.featuredStickers', hash=int, sets={StickerSetCovered}, unread={long}}