MadelineProto/old_docs/API_docs_v68/constructors/textConcat.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

43 lines
634 B
Markdown

---
title: textConcat
description: textConcat attributes, type and example
---
## Constructor: textConcat
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|texts|Array of [RichText](../types/RichText.md) | Yes|
### Type: [RichText](../types/RichText.md)
### Example:
```
$textConcat = ['_' => 'textConcat', 'texts' => [RichText]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "textConcat", "texts": [RichText]}
```
Or, if you're into Lua:
```
textConcat={_='textConcat', texts={RichText}}
```