MadelineProto/docs/TD_docs/constructors/inlineQueryResultSticker.md
2017-07-23 16:11:02 +02:00

958 B

title description
inlineQueryResultSticker Represents a sticker cached on the telegram server

Constructor: inlineQueryResultSticker

Back to constructors index

Represents a sticker cached on the telegram server

Attributes:

Name Type Required Description
id string Yes Unique identifier of this result
sticker sticker Yes The sticker

Type: InlineQueryResult

Example:

$inlineQueryResultSticker = ['_' => 'inlineQueryResultSticker', 'id' => string, 'sticker' => sticker, ];

PWRTelegram json-encoded version:

{"_":"inlineQueryResultSticker","id":"string","sticker":"sticker"}

Or, if you're into Lua:

inlineQueryResultSticker={_='inlineQueryResultSticker', id=string, sticker=sticker, }