EncryptedChat
- class pyrogram.raw.base.EncryptedChat
Object contains info on an encrypted chat.
- Constructors:
This base type has 5 constructors available.
Encrypted chat
Discarded or deleted chat.
Empty constructor.
Request to create an encrypted chat.
Chat waiting for approval of second participant.
- Functions:
This object can be returned by 2 functions.
Sends a request to start a secret chat to the user.
Confirms creation of a secret chat
TL Schema
encryptedChat#61f0d4c7
id:int
access_hash:long
date:int
admin_id:long
participant_id:long
g_a_or_b:bytes
key_fingerprint:long
= EncryptedChat
Parameter Tree
EncryptedChat
├── id →
int├── access_hash →
long├── date →
int├── admin_id →
long├── participant_id →
long├── g_a_or_b →
bytes└── key_fingerprint →
longExample
EncryptedChat(
id=0,
access_hash=0,
date=0,
admin_id=0,
participant_id=0,
g_a_or_b=b"data",
key_fingerprint=0,
)