MadelineProto/old_docs/API_docs_v68/constructors/updates_differenceSlice.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

48 lines
1.5 KiB
Markdown

---
title: updates.differenceSlice
description: updates_differenceSlice attributes, type and example
---
## Constructor: updates.differenceSlice
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|new\_messages|Array of [Message](../types/Message.md) | Yes|
|new\_encrypted\_messages|Array of [EncryptedMessage](../types/EncryptedMessage.md) | Yes|
|other\_updates|Array of [Update](../types/Update.md) | Yes|
|chats|Array of [Chat](../types/Chat.md) | Yes|
|users|Array of [User](../types/User.md) | Yes|
|intermediate\_state|[updates\_State](../types/updates_State.md) | Yes|
### Type: [updates\_Difference](../types/updates_Difference.md)
### Example:
```
$updates_differenceSlice = ['_' => 'updates.differenceSlice', 'new_messages' => [Message], 'new_encrypted_messages' => [EncryptedMessage], 'other_updates' => [Update], 'chats' => [Chat], 'users' => [User], 'intermediate_state' => updates_State];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updates.differenceSlice", "new_messages": [Message], "new_encrypted_messages": [EncryptedMessage], "other_updates": [Update], "chats": [Chat], "users": [User], "intermediate_state": updates_State}
```
Or, if you're into Lua:
```
updates_differenceSlice={_='updates.differenceSlice', new_messages={Message}, new_encrypted_messages={EncryptedMessage}, other_updates={Update}, chats={Chat}, users={User}, intermediate_state=updates_State}
```