MadelineProtoDocs/docs/API_docs/constructors/messages_chatsSlice.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
875 B
Markdown

---
title: messages.chatsSlice
description: Chats slice
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.chatsSlice
[Back to constructors index](index.md)
Chats slice
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|count|[int](../types/int.md) | Yes|Count|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
### Type: [messages\_Chats](../types/messages_Chats.md)
### Example:
```php
$messages_chatsSlice = ['_' => 'messages.chatsSlice', 'count' => int, 'chats' => [Chat, Chat]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messages.chatsSlice", "count": int, "chats": [Chat]}
```
Or, if you're into Lua:
```lua
messages_chatsSlice={_='messages.chatsSlice', count=int, chats={Chat}}
```