mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 14:27:23 +01:00
29 lines
673 B
Markdown
29 lines
673 B
Markdown
|
---
|
||
|
title: updates_state
|
||
|
description: updates_state attributes, type and example
|
||
|
---
|
||
|
## Constructor: updates\_state
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|pts|[int](../types/int.md) | Required|
|
||
|
|qts|[int](../types/int.md) | Required|
|
||
|
|date|[int](../types/int.md) | Required|
|
||
|
|seq|[int](../types/int.md) | Required|
|
||
|
|unread\_count|[int](../types/int.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [updates\_State](../types/updates_State.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$updates_state = ['_' => 'updates_state', 'pts' => int, 'qts' => int, 'date' => int, 'seq' => int, 'unread_count' => int, ];
|
||
|
```
|