MadelineProtoDocs/old_docs/API_docs_v105/constructors/updates.state.md

44 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2019-06-24 15:45:02 +02:00
---
title: updates.state
2019-12-27 17:48:04 +01:00
description: Updates state.
2019-06-24 15:45:02 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/constructors/updates_state.html
2019-06-24 15:45:02 +02:00
---
# Constructor: updates.state
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Updates state.
2019-06-24 15:45:02 +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-06-24 15:45:02 +02:00
2019-12-27 18:25:37 +01:00
### Type: [updates.State](../types/updates.State.md)
2019-06-24 15:45:02 +02:00
### Example:
```php
2019-12-27 18:25:37 +01:00
$updates.state = ['_' => 'updates.state', 'pts' => int, 'qts' => int, 'date' => int, 'seq' => int, 'unread_count' => int];
2019-06-24 15:45:02 +02:00
```
Or, if you're into Lua:
```lua
2019-12-27 18:25:37 +01:00
updates.state={_='updates.state', pts=int, qts=int, date=int, seq=int, unread_count=int}
2019-06-24 15:45:02 +02:00
```