MadelineProtoDocs/old_docs/API_docs_v105/constructors/updates_channelDifferenceEmpty.md

41 lines
1.1 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: updates.channelDifferenceEmpty
2019-12-27 17:48:04 +01:00
description: There are no new updates
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updates.channelDifferenceEmpty
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
There are no new updates
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|final|[Bool](../types/Bool.md) | Optional|Whether there are more updates that must be fetched (always false)|
|pts|[int](../types/int.md) | Yes|The latest [PTS](https://core.telegram.org/api/updates)|
|timeout|[int](../types/int.md) | Optional|Clients are supposed to refetch the channel difference after timeout seconds have elapsed|
2019-09-13 17:13:55 +02:00
### Type: [updates\_ChannelDifference](../types/updates_ChannelDifference.md)
### Example:
```php
$updates_channelDifferenceEmpty = ['_' => '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}
```