2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: replyInlineMarkup
|
|
|
|
description: replyInlineMarkup attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: replyInlineMarkup
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|rows|Array of [KeyboardButtonRow](../types/KeyboardButtonRow.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ReplyMarkup](../types/ReplyMarkup.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-03-11 19:54:51 +01:00
|
|
|
$replyInlineMarkup = ['_' => 'replyInlineMarkup', 'rows' => [KeyboardButtonRow], ];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
replyInlineMarkup={_='replyInlineMarkup', rows={KeyboardButtonRow}, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|