mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
30 lines
631 B
Markdown
30 lines
631 B
Markdown
|
---
|
||
|
title: "reactionEmoji"
|
||
|
description: "Normal emoji message reaction"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: reactionEmoji
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Normal emoji message reaction
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|emoticon|[string](/API_docs/types/string.html) | Yes|Emoji|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Reaction](/API_docs/types/Reaction.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$reactionEmoji = ['_' => 'reactionEmoji', 'emoticon' => 'string'];
|
||
|
```
|