mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 17:55:35 +01:00
31 lines
788 B
Markdown
31 lines
788 B
Markdown
---
|
|
title: "emojiKeywordDeleted"
|
|
description: "Deleted emoji keyword"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: emojiKeywordDeleted
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Deleted emoji keyword
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|keyword|[string](/API_docs/types/string.html) | Yes|Keyword|
|
|
|emoticons|Array of [string](/API_docs/types/string.html) | Yes|Emojis that were associated to keyword|
|
|
|
|
|
|
|
|
### Type: [EmojiKeyword](/API_docs/types/EmojiKeyword.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$emojiKeywordDeleted = ['_' => 'emojiKeywordDeleted', 'keyword' => 'string', 'emoticons' => ['string', 'string']];
|
|
```
|