MadelineProto/docs/TD_docs/constructors/secretChatInfo.md

45 lines
750 B
Markdown
Raw Normal View History

---
title: secretChatInfo
description: Secret chat with one user
---
## Constructor: secretChatInfo
[Back to constructors index](index.md)
Secret chat with one user
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|secret\_chat|[secretChat](../types/secretChat.md) | Yes|Information about the chat|
### Type: [ChatInfo](../types/ChatInfo.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$secretChatInfo = ['_' => 'secretChatInfo', 'secret_chat' => secretChat];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "secretChatInfo", "secret_chat": secretChat}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
secretChatInfo={_='secretChatInfo', secret_chat=secretChat}
```