4baac3178e
Add PHP, Lua language tag to Code area
1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
messages.recentStickers | messages_recentStickers attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messages.recentStickers
Attributes:
Name | Type | Required |
---|---|---|
hash | int | Yes |
packs | Array of StickerPack | Yes |
stickers | Array of Document | Yes |
dates | Array of int | Yes |
Type: messages_RecentStickers
Example:
$messages_recentStickers = ['_' => 'messages.recentStickers', 'hash' => int, 'packs' => [StickerPack, StickerPack], 'stickers' => [Document, Document], 'dates' => [int, int]];
PWRTelegram json-encoded version:
{"_": "messages.recentStickers", "hash": int, "packs": [StickerPack], "stickers": [Document], "dates": [int]}
Or, if you're into Lua:
messages_recentStickers={_='messages.recentStickers', hash=int, packs={StickerPack}, stickers={Document}, dates={int}}