MadelineProto/docs/TD_docs/constructors/inlineKeyboardButtonTypeUrl.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

837 B

title description
inlineKeyboardButtonTypeUrl A button which opens the specified URL

Constructor: inlineKeyboardButtonTypeUrl

Back to constructors index

A button which opens the specified URL

Attributes:

Name Type Required Description
url string Yes URL to open

Type: InlineKeyboardButtonType

Example:

$inlineKeyboardButtonTypeUrl = ['_' => 'inlineKeyboardButtonTypeUrl', 'url' => 'string'];

PWRTelegram json-encoded version:

{"_": "inlineKeyboardButtonTypeUrl", "url": "string"}

Or, if you're into Lua:

inlineKeyboardButtonTypeUrl={_='inlineKeyboardButtonTypeUrl', url='string'}