MadelineProto/old_docs/API_docs_v55/constructors/replyKeyboardMarkup.md

46 lines
1.0 KiB
Markdown
Raw Normal View History

---
title: replyKeyboardMarkup
description: replyKeyboardMarkup attributes, type and example
---
## Constructor: replyKeyboardMarkup
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|resize|[Bool](../types/Bool.md) | Optional|
|single\_use|[Bool](../types/Bool.md) | Optional|
|selective|[Bool](../types/Bool.md) | Optional|
|rows|Array of [KeyboardButtonRow](../types/KeyboardButtonRow.md) | Yes|
### Type: [ReplyMarkup](../types/ReplyMarkup.md)
### Example:
```
2017-03-11 20:06:30 +01:00
$replyKeyboardMarkup = ['_' => 'replyKeyboardMarkup', 'resize' => Bool, 'single_use' => Bool, 'selective' => Bool, 'rows' => [KeyboardButtonRow], ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"replyKeyboardMarkup","resize":"Bool","single_use":"Bool","selective":"Bool","rows":["KeyboardButtonRow"]}
```
Or, if you're into Lua:
```
2017-03-11 20:06:30 +01:00
replyKeyboardMarkup={_='replyKeyboardMarkup', resize=Bool, single_use=Bool, selective=Bool, rows={KeyboardButtonRow}, }
```