36 lines
541 B
Markdown
36 lines
541 B
Markdown
|
---
|
||
|
title: keyboardButton
|
||
|
description: keyboardButton attributes, type and example
|
||
|
---
|
||
|
## Constructor: keyboardButton
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|text|[string](../types/string.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [KeyboardButton](../types/KeyboardButton.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$keyboardButton = ['_' => 'keyboardButton', 'text' => string, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
keyboardButton={_='keyboardButton', text=string, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|