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