---
title: keyboardButton
description: keyboardButton attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# 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'}

```