--- title: messageMediaUnsupported description: messageMediaUnsupported attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: messageMediaUnsupported [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |bytes|[bytes](../types/bytes.md) | Yes| ### Type: [MessageMedia](../types/MessageMedia.md) ### Example: ``` $messageMediaUnsupported = ['_' => 'messageMediaUnsupported', 'bytes' => 'bytes']; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "messageMediaUnsupported", "bytes": {"_": "bytes", "bytes":"base64 encoded bytes"}} ``` Or, if you're into Lua: ``` messageMediaUnsupported={_='messageMediaUnsupported', bytes='bytes'} ```