45 lines
791 B
Markdown
45 lines
791 B
Markdown
|
---
|
||
|
title: replyKeyboardHide
|
||
|
description: Reply keyboard hide
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: replyKeyboardHide
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Reply keyboard hide
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|selective|[Bool](../types/Bool.md) | Optional|Selective?|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [ReplyMarkup](../types/ReplyMarkup.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$replyKeyboardHide = ['_' => 'replyKeyboardHide', 'selective' => Bool];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "replyKeyboardHide", "selective": Bool}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
replyKeyboardHide={_='replyKeyboardHide', selective=Bool}
|
||
|
|
||
|
```
|
||
|
|
||
|
|