mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 11:47:49 +01:00
36 lines
494 B
Markdown
36 lines
494 B
Markdown
---
|
|
title: textPlain
|
|
description: textPlain attributes, type and example
|
|
---
|
|
## Constructor: textPlain
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|text|[string](../types/string.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [RichText](../types/RichText.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$textPlain = ['_' => 'textPlain', 'text' => string, ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
textPlain={_='textPlain', text=string, }
|
|
|
|
```
|
|
|
|
|