MadelineProto/docs/TD_docs/constructors/test_vectorStringObject.md

43 lines
792 B
Markdown
Raw Normal View History

---
title: test.vectorStringObject
description: test_vectorStringObject attributes, type and example
---
## Constructor: test.vectorStringObject
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|value|Array of [test\_String](../constructors/test_String.md) | Yes|
### Type: [test\_VectorStringObject](../types/test_VectorStringObject.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$test_vectorStringObject = ['_' => 'test.vectorStringObject', 'value' => [test_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.vectorStringObject", "value": [test_String]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
test_vectorStringObject={_='test.vectorStringObject', value={test_String}}
```