MadelineProto/old_docs/API_docs_v65/constructors/messages_featuredStickers.md
2017-07-23 16:11:02 +02:00

1009 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}, }