2019-06-24 15:45:02 +02:00
|
|
|
---
|
|
|
|
title: updates.differenceSlice
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Incomplete list of occurred events.
|
2019-06-24 15:45:02 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2019-12-27 18:46:25 +01:00
|
|
|
redirect_from: /API_docs/constructors/updates_differenceSlice.html
|
2019-06-24 15:45:02 +02:00
|
|
|
---
|
|
|
|
# Constructor: updates.differenceSlice
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Incomplete list of occurred events.
|
2019-06-24 15:45:02 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|new\_messages|Array of [Message](../types/Message.md) | Yes|New messages|
|
|
|
|
|new\_encrypted\_messages|Array of [EncryptedMessage](../types/EncryptedMessage.md) | Yes|New encrypted messages|
|
|
|
|
|other\_updates|Array of [Update](../types/Update.md) | Yes|Other updates|
|
|
|
|
|chats|Array of [Chat](../types/Chat.md) | Yes|Chats|
|
|
|
|
|users|Array of [User](../types/User.md) | Yes|Users|
|
2019-12-27 18:25:37 +01:00
|
|
|
|intermediate\_state|[updates.State](../constructors/updates.State.md) | Yes|Intermediary state|
|
2019-06-24 15:45:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 18:25:37 +01:00
|
|
|
### Type: [updates.Difference](../types/updates.Difference.md)
|
2019-06-24 15:45:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
2019-12-27 18:25:37 +01:00
|
|
|
$updates.differenceSlice = ['_' => 'updates.differenceSlice', 'new_messages' => [Message, Message], 'new_encrypted_messages' => [EncryptedMessage, EncryptedMessage], 'other_updates' => [Update, Update], 'chats' => [Chat, Chat], 'users' => [User, User], 'intermediate_state' => updates.State];
|
2019-06-24 15:45:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
2019-12-27 18:25:37 +01:00
|
|
|
updates.differenceSlice={_='updates.differenceSlice', new_messages={Message}, new_encrypted_messages={EncryptedMessage}, other_updates={Update}, chats={Chat}, users={User}, intermediate_state=updates.State}
|
2019-06-24 15:45:02 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|