MadelineProtoDocs/docs/API_docs/constructors/replyInlineMarkup.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
859 B
Markdown

---
title: replyInlineMarkup
description: Reply inline markup
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: replyInlineMarkup
[Back to constructors index](index.md)
Reply inline markup
### 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]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "replyInlineMarkup", "rows": [KeyboardButtonRow]}
```
Or, if you're into Lua:
```lua
replyInlineMarkup={_='replyInlineMarkup', rows={KeyboardButtonRow}}
```