MadelineProtoDocs/old_docs/API_docs_v103/constructors/updates_differenceTooLong.md

39 lines
965 B
Markdown
Raw Normal View History

2019-08-15 20:25:16 +02:00
---
title: updates.differenceTooLong
2019-12-27 17:48:04 +01:00
description: The difference is [too long](https://core.telegram.org/api/updates#recovering-gaps), and the specified state must be used to refetch updates.
2019-08-15 20:25:16 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updates.differenceTooLong
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
The difference is [too long](https://core.telegram.org/api/updates#recovering-gaps), and the specified state must be used to refetch updates.
2019-08-15 20:25:16 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|pts|[int](../types/int.md) | Yes|The new state to use.|
2019-08-15 20:25:16 +02:00
### Type: [updates\_Difference](../types/updates_Difference.md)
### Example:
```php
$updates_differenceTooLong = ['_' => 'updates.differenceTooLong', 'pts' => int];
```
Or, if you're into Lua:
```lua
updates_differenceTooLong={_='updates.differenceTooLong', pts=int}
```