MadelineProto/docs/TD_docs/constructors/stickerEmojis.md
2017-07-23 16:33:46 +02:00

1.1 KiB

title description
stickerEmojis Represents list of all emojis corresponding to a sticker in a sticker set. The list is only for informational purposes because sticker is always sent with a fixed emoji from the corresponding Sticker object

Constructor: stickerEmojis

Back to constructors index

Represents list of all emojis corresponding to a sticker in a sticker set. The list is only for informational purposes because sticker is always sent with a fixed emoji from the corresponding Sticker object

Attributes:

Name Type Required Description
emojis Array of string Yes List of emojis

Type: StickerEmojis

Example:

$stickerEmojis = ['_' => 'stickerEmojis', 'emojis' => ['string']];

PWRTelegram json-encoded version:

{"_": "stickerEmojis", "emojis": ["string"]}

Or, if you're into Lua:

stickerEmojis={_='stickerEmojis', emojis={'string'}}