MadelineProto/old_docs/API_docs_v66/constructors/textConcat.md

43 lines
637 B
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
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], ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"textConcat","texts":["RichText"]}
```
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
textConcat={_='textConcat', texts={RichText}, }
```