931 B
931 B
title | description | image |
---|---|---|
messageGroup | messageGroup attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: messageGroup
Attributes:
Name | Type | Required |
---|---|---|
min_id | int | Yes |
max_id | int | Yes |
count | int | Yes |
date | int | Yes |
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}