1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
encryptedChat | encryptedChat attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: encryptedChat
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];
PWRTelegram json-encoded version:
{"_": "encryptedChat", "id": int, "access_hash": long, "date": int, "admin_id": int, "participant_id": int, "g_a_or_b": {"_": "bytes", "bytes":"base64 encoded 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}