mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 10:28:17 +01:00
36 lines
667 B
Markdown
36 lines
667 B
Markdown
|
---
|
||
|
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:
|
||
|
|
||
|
```
|
||
|
$test_vectorStringObject = ['_' => 'test.vectorStringObject', 'value' => [test.String], ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
test_vectorStringObject={_='test.vectorStringObject', value={test.String}, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|