--- title: test.vectorInt description: test_vectorInt attributes, type and example --- ## Constructor: test.vectorInt [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |value|Array of [int](../constructors/int.md) | Yes| ### Type: [test\_VectorInt](../types/test_VectorInt.md) ### Example: ``` $test_vectorInt = ['_' => 'test.vectorInt', 'value' => [int]]; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "test.vectorInt", "value": [int]} ``` Or, if you're into Lua: ``` test_vectorInt={_='test.vectorInt', value={int}} ```