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