MadelineProtoDocs/docs/API_docs/constructors/keyboardButtonUrl.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

877 B

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

Constructor: keyboardButtonUrl

Back to constructors index

Keyboard button URL

Attributes:

Name Type Required Description
text string Yes Text
url string Yes URL

Type: KeyboardButton

Example:

$keyboardButtonUrl = ['_' => 'keyboardButtonUrl', 'text' => 'string', 'url' => 'string'];

PWRTelegram json-encoded version:

{"_": "keyboardButtonUrl", "text": "string", "url": "string"}

Or, if you're into Lua:

keyboardButtonUrl={_='keyboardButtonUrl', text='string', url='string'}