45 lines
706 B
Markdown
45 lines
706 B
Markdown
---
|
|
title: privateChatInfo
|
|
description: Ordinary chat with one user
|
|
---
|
|
## Constructor: privateChatInfo
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Ordinary chat with one user
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|user|[user](../types/user.md) | Yes|Information about interlocutor|
|
|
|
|
|
|
|
|
### Type: [ChatInfo](../types/ChatInfo.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$privateChatInfo = ['_' => 'privateChatInfo', 'user' => user];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "privateChatInfo", "user": user}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
privateChatInfo={_='privateChatInfo', user=user}
|
|
|
|
```
|
|
|
|
|