1.0 KiB
1.0 KiB
title | description | image |
---|---|---|
updatesCombined | Updates combined | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updatesCombined
Updates combined
Attributes:
Name | Type | Required | Description |
---|---|---|---|
updates | Array of Update | Yes | Updates |
users | Array of User | Yes | Users |
chats | Array of Chat | Yes | Chats |
date | int | Yes | Date |
seq_start | int | Yes | Seq start |
seq | int | Yes | Seq |
Type: Updates
Example:
$updatesCombined = ['_' => 'updatesCombined', 'updates' => [Update, Update], 'users' => [User, User], 'chats' => [Chat, Chat], 'date' => int, 'seq_start' => int, 'seq' => int];
Or, if you're into Lua:
updatesCombined={_='updatesCombined', updates={Update}, users={User}, chats={Chat}, date=int, seq_start=int, seq=int}