MadelineProtoDocs/old_docs/API_docs_v105/constructors/keyboardButton.md

39 lines
640 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: keyboardButton
description: Keyboard button
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: keyboardButton
[Back to constructors index](index.md)
Keyboard button
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[string](../types/string.md) | Yes|Text|
### Type: [KeyboardButton](../types/KeyboardButton.md)
### Example:
```php
$keyboardButton = ['_' => 'keyboardButton', 'text' => 'string'];
```
Or, if you're into Lua:
```lua
keyboardButton={_='keyboardButton', text='string'}
```