MadelineProto/old_docs/API_docs_v51/constructors/keyboardButtonSwitchInline.md

37 lines
701 B
Markdown
Raw Normal View History

---
title: keyboardButtonSwitchInline
description: keyboardButtonSwitchInline attributes, type and example
---
## Constructor: keyboardButtonSwitchInline
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|text|[string](../types/string.md) | Yes|
|query|[string](../types/string.md) | Yes|
### Type: [KeyboardButton](../types/KeyboardButton.md)
### Example:
```
$keyboardButtonSwitchInline = ['_' => 'keyboardButtonSwitchInline', 'text' => string, 'query' => string, ];
```
Or, if you're into Lua:
```
keyboardButtonSwitchInline={_='keyboardButtonSwitchInline', text=string, query=string, }
```