mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 08:36:55 +01:00
36 lines
628 B
Markdown
36 lines
628 B
Markdown
|
---
|
||
|
title: test.vectorIntObject
|
||
|
description: test_vectorIntObject attributes, type and example
|
||
|
---
|
||
|
## Constructor: test.vectorIntObject
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|value|Array of [test\_Int](../constructors/test_Int.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [test\_VectorIntObject](../types/test_VectorIntObject.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$test_vectorIntObject = ['_' => 'test.vectorIntObject', 'value' => [test.Int], ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
test_vectorIntObject={_='test.vectorIntObject', value={test.Int}, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|