MadelineProtoDocs/old_docs/API_docs_v105/constructors/updates_differenceEmpty.md

40 lines
766 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: updates.differenceEmpty
2019-12-27 17:48:04 +01:00
description: No events.
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updates.differenceEmpty
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
No events.
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|date|[int](../types/int.md) | Yes|Current date|
|seq|[int](../types/int.md) | Yes|Number of sent updates|
2019-09-13 17:13:55 +02:00
### Type: [updates\_Difference](../types/updates_Difference.md)
### Example:
```php
$updates_differenceEmpty = ['_' => 'updates.differenceEmpty', 'date' => int, 'seq' => int];
```
Or, if you're into Lua:
```lua
updates_differenceEmpty={_='updates.differenceEmpty', date=int, seq=int}
```