MadelineProto/docs/TD_docs/constructors/test_vectorIntObject.md

43 lines
747 B
Markdown
Raw Normal View History

---
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:
```
2017-07-23 16:33:46 +02:00
$test_vectorIntObject = ['_' => 'test.vectorIntObject', 'value' => [test_Int]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "test.vectorIntObject", "value": [test_Int]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
test_vectorIntObject={_='test.vectorIntObject', value={test_Int}}
```