MadelineProtoDocs/docs/API_docs/constructors/messages.channelMessages.md

45 lines
1.4 KiB
Markdown
Raw Normal View History

2019-06-23 13:07:51 +02:00
---
title: messages.channelMessages
description: Channel messages
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/constructors/messages_channelMessages.html
2019-06-23 13:07:51 +02:00
---
# Constructor: messages.channelMessages
[Back to constructors index](index.md)
Channel messages
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|inexact|[Bool](../types/Bool.md) | Optional|If set, returned results may be inexact|
|pts|[int](../types/int.md) | Yes|[Event count after generation](https://core.telegram.org/api/updates)|
|count|[int](../types/int.md) | Yes|Total number of results were found server-side (may not be all included here)|
2019-06-23 13:07:51 +02:00
|messages|Array of [Message](../types/Message.md) | Yes|Messages|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
|users|Array of [User](../types/User.md) | Yes|Users|
2019-12-27 18:25:37 +01:00
### Type: [messages.Messages](../types/messages.Messages.md)
2019-06-23 13:07:51 +02:00
### Example:
```php
2019-12-27 18:25:37 +01:00
$messages.channelMessages = ['_' => 'messages.channelMessages', 'inexact' => Bool, 'pts' => int, 'count' => int, 'messages' => [Message, Message], 'chats' => [Chat, Chat], 'users' => [User, User]];
2019-06-23 13:07:51 +02:00
```
Or, if you're into Lua:
```lua
2019-12-27 18:25:37 +01:00
messages.channelMessages={_='messages.channelMessages', inexact=Bool, pts=int, count=int, messages={Message}, chats={Chat}, users={User}}
2019-06-23 13:07:51 +02:00
```