1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 02:26:55 +01:00
MadelineProto/docs/TD_docs/constructors/privateChatInfo.md

599 B

title description
privateChatInfo Ordinary chat with one user

Constructor: privateChatInfo

Back to constructors index

Ordinary chat with one user

Attributes:

Name Type Required Description
user user Yes Information about interlocutor

Type: ChatInfo

Example:

$privateChatInfo = ['_' => 'privateChatInfo', 'user' => user, ];

Or, if you're into Lua:

privateChatInfo={_='privateChatInfo', user=user, }