MadelineProto/old_docs/API_docs_v68/constructors/messages_featuredStickers.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1006 B

title description
messages.featuredStickers messages_featuredStickers attributes, type and example

Constructor: messages.featuredStickers

Back to constructors index

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], 'unread' => [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}}