MadelineProtoDocs/old_docs/API_docs_v91/constructors/keyboardButtonRow.md
2019-03-08 13:49:23 +01:00

868 B

title description image
keyboardButtonRow Keyboard button row https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: keyboardButtonRow

Back to constructors index

Keyboard button row

Attributes:

Name Type Required Description
buttons Array of KeyboardButton Yes Buttons

Type: KeyboardButtonRow

Example:

$keyboardButtonRow = ['_' => 'keyboardButtonRow', 'buttons' => [KeyboardButton, KeyboardButton]];

PWRTelegram json-encoded version:

{"_": "keyboardButtonRow", "buttons": [KeyboardButton]}

Or, if you're into Lua:

keyboardButtonRow={_='keyboardButtonRow', buttons={KeyboardButton}}