MadelineProtoDocs/old_docs/API_docs_v38/constructors/keyboardButton.md
2018-04-04 19:52:48 +02:00

729 B

title description image
keyboardButton keyboardButton attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: keyboardButton

Back to constructors index

Attributes:

Name Type Required
text string Yes

Type: KeyboardButton

Example:

$keyboardButton = ['_' => 'keyboardButton', 'text' => 'string'];

PWRTelegram json-encoded version:

{"_": "keyboardButton", "text": "string"}

Or, if you're into Lua:

keyboardButton={_='keyboardButton', text='string'}