MadelineProtoDocs/old_docs/API_docs_v105/constructors/updates_state.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: updates.state
2019-12-27 17:48:04 +01:00
description: Updates state.
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updates.state
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Updates state.
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|pts|[int](../types/int.md) | Yes|Number of events occured in a text box|
|qts|[int](../types/int.md) | Yes|Position in a sequence of updates in secret chats. For further detailes refer to article [secret chats](https://core.telegram.org/api/end-to-end)<br>Parameter was added in [eigth layer](https://core.telegram.org/api/layers#layer-8).|
|date|[int](../types/int.md) | Yes|Date of condition|
|seq|[int](../types/int.md) | Yes|Number of sent updates|
|unread\_count|[int](../types/int.md) | Yes|Number of unread messages|
2019-09-13 17:13:55 +02:00
### Type: [updates\_State](../types/updates_State.md)
### Example:
```php
$updates_state = ['_' => 'updates.state', 'pts' => int, 'qts' => int, 'date' => int, 'seq' => int, 'unread_count' => int];
```
Or, if you're into Lua:
```lua
updates_state={_='updates.state', pts=int, qts=int, date=int, seq=int, unread_count=int}
```