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

45 lines
921 B
Markdown

---
title: keyboardButtonRequestGeoLocation
description: Keyboard button request geo location
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: keyboardButtonRequestGeoLocation
[Back to constructors index](index.md)
Keyboard button request geo location
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[string](../types/string.md) | Yes|Text|
### Type: [KeyboardButton](../types/KeyboardButton.md)
### Example:
```php
$keyboardButtonRequestGeoLocation = ['_' => 'keyboardButtonRequestGeoLocation', 'text' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "keyboardButtonRequestGeoLocation", "text": "string"}
```
Or, if you're into Lua:
```lua
keyboardButtonRequestGeoLocation={_='keyboardButtonRequestGeoLocation', text='string'}
```