MadelineProtoDocs/old_docs/API_docs_v14/constructors/updates.difference.md

1.5 KiB

title description image redirect_from
updates.difference Full list of occurred events. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/updates_difference.html

Constructor: updates.difference

Back to constructors index

Full list of occurred events.

Attributes:

Name Type Required Description
new_messages Array of Message Yes List of new messages
new_encrypted_messages Array of EncryptedMessage Yes List of new encrypted secret chat messages
other_updates Array of Update Yes List of updates
chats Array of Chat Yes List of chats mentioned in events
users Array of User Yes List of users mentioned in events
state updates.State Yes Current state

Type: updates.Difference

Example:

$updates.difference = ['_' => 'updates.difference', 'new_messages' => [Message, Message], 'new_encrypted_messages' => [EncryptedMessage, EncryptedMessage], 'other_updates' => [Update, Update], 'chats' => [Chat, Chat], 'users' => [User, User], 'state' => updates.State];

Or, if you're into Lua:

updates.difference={_='updates.difference', new_messages={Message}, new_encrypted_messages={EncryptedMessage}, other_updates={Update}, chats={Chat}, users={User}, state=updates.State}