MadelineProtoDocs/old_docs/API_docs_v105/constructors/messages_chatsSlice.md

40 lines
1020 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: messages.chatsSlice
2019-12-27 17:48:04 +01:00
description: Partial list of chats, more would have to be fetched with [pagination](https://core.telegram.org/api/offsets)
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.chatsSlice
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Partial list of chats, more would have to be fetched with [pagination](https://core.telegram.org/api/offsets)
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|count|[int](../types/int.md) | Yes|Total number of results that were found server-side (not all are included in `chats`)|
2019-09-13 17:13:55 +02:00
|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]];
```
Or, if you're into Lua:
```lua
messages_chatsSlice={_='messages.chatsSlice', count=int, chats={Chat}}
```