MadelineProtoDocs/old_docs/API_docs_v105/constructors/keyboardButtonUrl.md

40 lines
744 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: keyboardButtonUrl
description: Keyboard button URL
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: keyboardButtonUrl
[Back to constructors index](index.md)
Keyboard button URL
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[string](../types/string.md) | Yes|Text|
|url|[string](../types/string.md) | Yes|URL|
### Type: [KeyboardButton](../types/KeyboardButton.md)
### Example:
```php
$keyboardButtonUrl = ['_' => 'keyboardButtonUrl', 'text' => 'string', 'url' => 'string'];
```
Or, if you're into Lua:
```lua
keyboardButtonUrl={_='keyboardButtonUrl', text='string', url='string'}
```