Layer 227
UpdateGroupCallEncryptedMessage
A new E 2 E-encrypted message or emoji reaction was received in a conference call, see here for the decryption process.
constructor
updateGroupCallEncryptedMessage#c957a766 call:InputGroupCall from_id:Peer encrypted_message:bytes = Update;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | Conference call that received the encrypted message |
| FromId | Peer | Sender whose blockchain public key must be used to verify the encrypted packet |
| EncryptedMessage | bytes | Complete encrypted packet |
Returns
UpdateGogram Example
// Creating UpdateGroupCallEncryptedMessage constructor obj := &tg.UpdateGroupCallEncryptedMessage{ Call: &tg.InputGroupCall{}, FromId: &tg.Peer{}, EncryptedMessage: []byte{0x01, 0x02, 0x03}, }