mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 15:26:54 +01:00
46 lines
911 B
Markdown
46 lines
911 B
Markdown
---
|
|
title: keyboardButton
|
|
description: Represents one button of the bot keyboard
|
|
---
|
|
## Constructor: keyboardButton
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Represents one button of the bot keyboard
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|text|[string](../types/string.md) | Yes|Text of the button|
|
|
|type|[KeyboardButtonType](../types/KeyboardButtonType.md) | Yes|Type of the button|
|
|
|
|
|
|
|
|
### Type: [KeyboardButton](../types/KeyboardButton.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$keyboardButton = ['_' => 'keyboardButton', 'text' => 'string', 'type' => KeyboardButtonType];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "keyboardButton", "text": "string", "type": KeyboardButtonType}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
keyboardButton={_='keyboardButton', text='string', type=KeyboardButtonType}
|
|
|
|
```
|
|
|
|
|