MadelineProtoDocs/old_docs/API_docs_v40/constructors/replyKeyboardHide.md

39 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2018-04-01 13:19:25 +02:00
---
title: replyKeyboardHide
2019-12-27 17:48:04 +01:00
description: Hide sent bot keyboard
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: replyKeyboardHide
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Hide sent bot keyboard
2018-12-26 02:56:50 +01:00
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2020-06-16 17:50:25 +02:00
|selective|[Bool](../types/Bool.md) | Optional|Use this flag if you want to remove the keyboard for specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply\_to\_message\_id), sender of the original message.<br><br>Example: A user votes in a poll, bot returns confirmation message in reply to the vote and removes the keyboard for that user, while still showing the keyboard with poll options to users who haven't voted yet|
2018-04-01 13:19:25 +02:00
### Type: [ReplyMarkup](../types/ReplyMarkup.md)
### Example:
```php
2020-06-16 17:50:25 +02:00
$replyKeyboardHide = ['_' => 'replyKeyboardHide', 'selective' => Bool];
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2020-06-16 17:50:25 +02:00
replyKeyboardHide={_='replyKeyboardHide', selective=Bool}
2018-04-01 13:19:25 +02:00
```