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