--- title: keyboardButtonCallback description: Callback button image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: keyboardButtonCallback [Back to constructors index](index.md) Callback button ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |requires\_password|[Bool](../types/Bool.md) | Optional| |text|[string](../types/string.md) | Yes|Button text| |data|[bytes](../types/bytes.md) | Yes|Callback data| ### Type: [KeyboardButton](../types/KeyboardButton.md) ### Example: ```php $keyboardButtonCallback = ['_' => 'keyboardButtonCallback', 'requires_password' => Bool, 'text' => 'string', 'data' => 'bytes']; ``` Or, if you're into Lua: ```lua keyboardButtonCallback={_='keyboardButtonCallback', requires_password=Bool, text='string', data='bytes'} ```