MadelineProto/old_docs/API_docs_v38/constructors/messageGroup.md
2017-07-23 16:11:02 +02:00

861 B

title description
messageGroup messageGroup attributes, type and example

Constructor: messageGroup

Back to constructors index

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, }