1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
encryptedChat | Encrypted chat | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: encryptedChat
Encrypted chat
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | int | Yes | ID |
access_hash | long | Yes | Access hash |
date | int | Yes | Date |
admin_id | int | Yes | Admin ID |
participant_id | int | Yes | Participant ID |
g_a_or_b | bytes | Yes | G a or b |
key_fingerprint | long | Yes | Key fingerprint |
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}