984 B
984 B
title | description | image |
---|---|---|
updates | Full constructor of updates | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updates
Full constructor of updates
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 | Current date |
seq | int | Yes | Total number of sent updates |
Type: Updates
Example:
$updates = ['_' => 'updates', 'updates' => [Update, Update], 'users' => [User, User], 'chats' => [Chat, Chat], 'date' => int, 'seq' => int];
Or, if you're into Lua:
updates={_='updates', updates={Update}, users={User}, chats={Chat}, date=int, seq=int}