974 B
974 B
title | description | image |
---|---|---|
messageGroup | Message group | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messageGroup
Message group
Attributes:
Name | Type | Required | Description |
---|---|---|---|
min_id | int | Yes | Min ID |
max_id | int | Yes | Max ID |
count | int | Yes | Count |
date | int | Yes | Date |
Type: MessageGroup
Example:
$messageGroup = ['_' => 'messageGroup', 'min_id' => int, 'max_id' => int, 'count' => int, 'date' => int];
PWRTelegram json-encoded version:
{"_": "messageGroup", "min_id": int, "max_id": int, "count": int, "date": int}
Or, if you're into Lua:
messageGroup={_='messageGroup', min_id=int, max_id=int, count=int, date=int}