MadelineProto/docs/TD_docs/constructors/inlineQueryResultSticker.md

46 lines
961 B
Markdown
Raw Normal View History

---
title: inlineQueryResultSticker
description: Represents a sticker cached on the telegram server
---
## Constructor: inlineQueryResultSticker
[Back to constructors index](index.md)
Represents a sticker cached on the telegram server
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|id|[string](../types/string.md) | Yes|Unique identifier of this result|
|sticker|[sticker](../types/sticker.md) | Yes|The sticker|
### Type: [InlineQueryResult](../types/InlineQueryResult.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inlineQueryResultSticker = ['_' => 'inlineQueryResultSticker', 'id' => 'string', 'sticker' => sticker];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inlineQueryResultSticker", "id": "string", "sticker": sticker}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inlineQueryResultSticker={_='inlineQueryResultSticker', id='string', sticker=sticker}
```