MadelineProto/old_docs/API_docs_v68/constructors/keyboardButton.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

43 lines
655 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'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "keyboardButton", "text": "string"}
```
Or, if you're into Lua:
```
keyboardButton={_='keyboardButton', text='string'}
```