MadelineProto/old_docs/API_docs_v40/constructors/encryptedChat.md

1011 B

title description
encryptedChat encryptedChat attributes, type and example

Constructor: encryptedChat

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_or_b bytes Yes
key_fingerprint long Yes

Type: EncryptedChat

Example:

$encryptedChat = ['_' => 'encryptedChat', 'id' => int, 'access_hash' => long, 'date' => int, 'admin_id' => int, 'participant_id' => int, 'g_a_or_b' => bytes, 'key_fingerprint' => long, ];

Or, if you're into Lua:

encryptedChat={_='encryptedChat', id=int, access_hash=long, date=int, admin_id=int, participant_id=int, g_a_or_b=bytes, key_fingerprint=long, }