MadelineProtoDocs/docs/API_docs/constructors/updates_channelDifferenceEmpty.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

47 lines
1.0 KiB
Markdown

---
title: updates.channelDifferenceEmpty
description: Empty channel difference
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updates.channelDifferenceEmpty
[Back to constructors index](index.md)
Empty channel difference
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|final|[Bool](../types/Bool.md) | Optional|Final?|
|pts|[int](../types/int.md) | Yes|Pts|
|timeout|[int](../types/int.md) | Optional|Timeout|
### Type: [updates\_ChannelDifference](../types/updates_ChannelDifference.md)
### Example:
```php
$updates_channelDifferenceEmpty = ['_' => 'updates.channelDifferenceEmpty', 'final' => Bool, 'pts' => int, 'timeout' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updates.channelDifferenceEmpty", "final": Bool, "pts": int, "timeout": int}
```
Or, if you're into Lua:
```lua
updates_channelDifferenceEmpty={_='updates.channelDifferenceEmpty', final=Bool, pts=int, timeout=int}
```