MadelineProto/docs/TD_docs/constructors/test_vectorString.md

43 lines
712 B
Markdown
Raw Normal View History

---
title: test.vectorString
description: test_vectorString attributes, type and example
---
## Constructor: test.vectorString
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|value|Array of [string](../constructors/string.md) | Yes|
### Type: [test\_VectorString](../types/test_VectorString.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$test_vectorString = ['_' => 'test.vectorString', 'value' => ['string']];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "test.vectorString", "value": ["string"]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
test_vectorString={_='test.vectorString', value={'string'}}
```