mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 18:46:56 +01:00
712 B
712 B
title | description |
---|---|
test.vectorString | test_vectorString attributes, type and example |
Constructor: test.vectorString
Attributes:
Name | Type | Required |
---|---|---|
value | Array of string | Yes |
Type: test_VectorString
Example:
$test_vectorString = ['_' => 'test.vectorString', 'value' => ['string']];
PWRTelegram json-encoded version:
{"_": "test.vectorString", "value": ["string"]}
Or, if you're into Lua:
test_vectorString={_='test.vectorString', value={'string'}}