MadelineProto/old_docs/API_docs_v65/constructors/encryptedChatRequested.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

958 B

title description
encryptedChatRequested encryptedChatRequested attributes, type and example

Constructor: encryptedChatRequested

Back to constructors index

Attributes:

Name Type Required
id int Yes
access_hash long Yes
date int Yes
admin_id int Yes
participant_id int Yes
g_a bytes Yes

Type: EncryptedChat

Example:

$encryptedChatRequested = ['_' => 'encryptedChatRequested', 'id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a' => bytes, ];

Or, if you're into Lua:

encryptedChatRequested={_='encryptedChatRequested', id=int, access_hash=long, date=int, admin_id=int, participant_id=int, g_a=bytes, }