Layer 224
constructor
updateGroupCallEncryptedMessage#c957a766 call:InputGroupCall from_id:Peer encrypted_message:bytes = Update;

Parameters

Name Type Description
Call InputGroupCall Group call reference
FromId Peer Message sender
EncryptedMessage bytes Encrypted message data

Returns

Update

Gogram Example

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