--- 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'} ```