MadelineProtoDocs/old_docs/API_docs_v105/constructors/keyboardButtonSwitchInline.md

41 lines
923 B
Markdown
Raw Normal View History

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