MadelineProtoDocs/old_docs/API_docs_v105/constructors/keyboardButtonRequestPhone.md

39 lines
740 B
Markdown
Raw Normal View History

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