Layer 227
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

Update

Gogram Example

// Creating UpdateGroupCallEncryptedMessage constructor
obj := &tg.UpdateGroupCallEncryptedMessage{
    Call: &tg.InputGroupCall{},
    FromId: &tg.Peer{},
    EncryptedMessage: []byte{0x01, 0x02, 0x03},
}