mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2025-01-22 05:41:46 +01:00
1.2 KiB
1.2 KiB
title | description | nav_exclude | image |
---|---|---|---|
updatesCombined | Constructor for a group of updates. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updatesCombined
Constructor for a group of updates.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
updates | Array of Update | Yes | List of updates |
users | Array of User | Yes | List of users mentioned in updates |
chats | Array of Chat | Yes | List of chats mentioned in updates |
date | int | Yes | Current date |
seq_start | int | Yes | Value seq for the earliest update in a group |
seq | int | Yes | Value seq for the latest update in a group |
Type: Updates
Example:
$updatesCombined = ['_' => 'updatesCombined', 'updates' => [Update, Update], 'users' => [User, User], 'chats' => [Chat, Chat], 'date' => int, 'seq_start' => int, 'seq' => int];