1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 22:36:55 +01:00
MadelineProto/docs/TD_docs/constructors/secretChatInfo.md
2017-07-23 16:11:02 +02:00

753 B

title description
secretChatInfo Secret chat with one user

Constructor: secretChatInfo

Back to constructors index

Secret chat with one user

Attributes:

Name Type Required Description
secret_chat secretChat Yes Information about the chat

Type: ChatInfo

Example:

$secretChatInfo = ['_' => 'secretChatInfo', 'secret_chat' => secretChat, ];

PWRTelegram json-encoded version:

{"_":"secretChatInfo","secret_chat":"secretChat"}

Or, if you're into Lua:

secretChatInfo={_='secretChatInfo', secret_chat=secretChat, }