MadelineProtoDocs/old_docs/API_docs_v33/constructors/geochats.messagesSlice.md
2019-12-27 18:25:37 +01:00

42 lines
1021 B
Markdown

---
title: geochats.messagesSlice
description: Messages slice
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: geochats.messagesSlice
[Back to constructors index](index.md)
Messages slice
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|count|[int](../types/int.md) | Yes|Count|
|messages|Array of [GeoChatMessage](../types/GeoChatMessage.md) | Yes|Messages|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
|users|Array of [User](../types/User.md) | Yes|Users|
### Type: [geochats.Messages](../types/geochats.Messages.md)
### Example:
```php
$geochats.messagesSlice = ['_' => 'geochats.messagesSlice', 'count' => int, 'messages' => [GeoChatMessage, GeoChatMessage], 'chats' => [Chat, Chat], 'users' => [User, User]];
```
Or, if you're into Lua:
```lua
geochats.messagesSlice={_='geochats.messagesSlice', count=int, messages={GeoChatMessage}, chats={Chat}, users={User}}
```