921 B
921 B
title | description | image |
---|---|---|
keyboardButtonCallback | keyboardButtonCallback attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: keyboardButtonCallback
Attributes:
Name | Type | Required |
---|---|---|
text | string | Yes |
data | bytes | Yes |
Type: KeyboardButton
Example:
$keyboardButtonCallback = ['_' => 'keyboardButtonCallback', 'text' => 'string', 'data' => 'bytes'];
PWRTelegram json-encoded version:
{"_": "keyboardButtonCallback", "text": "string", "data": {"_": "bytes", "bytes":"base64 encoded bytes"}}
Or, if you're into Lua:
keyboardButtonCallback={_='keyboardButtonCallback', text='string', data='bytes'}