MadelineProto/docs/TD_docs/constructors/test_bytes.md

43 lines
615 B
Markdown
Raw Normal View History

---
title: test.bytes
description: test_bytes attributes, type and example
---
## Constructor: test.bytes
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|value|[bytes](../types/bytes.md) | Yes|
### Type: [test\_Bytes](../types/test_Bytes.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$test_bytes = ['_' => 'test.bytes', 'value' => 'bytes'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "test.bytes", "value": "bytes"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
test_bytes={_='test.bytes', value='bytes'}
```