MadelineProtoDocs/docs/MTProto_docs/constructors/gzip_packed.md
2020-06-16 17:50:25 +02:00

37 lines
600 B
Markdown

---
title: gzip_packed
description: gzip_packed attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: gzip\_packed
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|packed\_data|[bytes](../types/bytes.md) | Yes|
### Type: [Object](../types/Object.md)
### Example:
```php
$gzip_packed = ['_' => 'gzip_packed', 'packed_data' => 'bytes'];
```
Or, if you're into Lua:
```lua
gzip_packed={_='gzip_packed', packed_data='bytes'}
```