MadelineProtoDocs/old_docs/API_docs_v2/constructors/geoChatMessageEmpty.md
2020-06-16 17:50:25 +02:00

38 lines
702 B
Markdown

---
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];
```
Or, if you're into Lua:
```lua
geoChatMessageEmpty={_='geoChatMessageEmpty', chat_id=int, id=int}
```