mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 17:26:58 +01:00
36 lines
592 B
Markdown
36 lines
592 B
Markdown
|
---
|
||
|
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:
|
||
|
|
||
|
```
|
||
|
$test_vectorString = ['_' => 'test.vectorString', 'value' => [string], ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
test_vectorString={_='test.vectorString', value={string}, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|