2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: replyInlineMarkup
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Bot or inline keyboard
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: replyInlineMarkup
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Bot or inline keyboard
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|rows|Array of [KeyboardButtonRow](../types/KeyboardButtonRow.md) | Yes|Rows|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ReplyMarkup](../types/ReplyMarkup.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$replyInlineMarkup = ['_' => 'replyInlineMarkup', 'rows' => [KeyboardButtonRow, KeyboardButtonRow]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
replyInlineMarkup={_='replyInlineMarkup', rows={KeyboardButtonRow}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|