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