mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
30 lines
765 B
Markdown
30 lines
765 B
Markdown
|
---
|
||
|
title: "reactionCustomEmoji"
|
||
|
description: "Custom emoji message reaction"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: reactionCustomEmoji
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
[Custom emoji](https://core.telegram.org/api/custom-emoji) message reaction
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|document\_id|[long](/API_docs/types/long.html) | Yes|[Custom emoji document ID](https://core.telegram.org/api/custom-emoji)|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Reaction](/API_docs/types/Reaction.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$reactionCustomEmoji = ['_' => 'reactionCustomEmoji', 'document_id' => long];
|
||
|
```
|