MadelineProtoDocs/old_docs/API_docs_v25/constructors/replyInlineMarkup.md

39 lines
761 B
Markdown
Raw Permalink Normal View History

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