MadelineProto/docs/API_docs/constructors/updates_differenceEmpty.md

37 lines
659 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
2017-01-19 23:02:27 +01:00
title: updates.differenceEmpty
2016-12-20 13:32:11 +01:00
description: updates_differenceEmpty attributes, type and example
2016-12-20 13:15:22 +01:00
---
2017-01-19 23:02:27 +01:00
## Constructor: updates.differenceEmpty
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|date|[int](../types/int.md) | Yes|
|seq|[int](../types/int.md) | Yes|
2016-12-19 18:56:05 +01:00
### Type: [updates\_Difference](../types/updates_Difference.md)
### Example:
```
2017-01-19 23:02:27 +01:00
$updates_differenceEmpty = ['_' => 'updates.differenceEmpty', 'date' => int, 'seq' => int, ];
```
Or, if you're into Lua:
```
updates_differenceEmpty={_='updates.differenceEmpty', date=int, seq=int, }
```