Layer 220
constructor
updateMessageReactions#1e297bfa flags:# peer:Peer msg_id:int top_msg_id:flags.0?int saved_peer_id:flags.1?Peer reactions:MessageReactions = Update;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Peer Peer Peer
MsgId int Message ID
TopMsgId flags.0?int Forum topic ID
SavedPeerId flags.1?Peer If set, the reactions are in the specified monoforum topic.
Reactions MessageReactions Reactions

Returns

Update

Gogram Example

// Creating UpdateMessageReactions constructor
obj := &tg.UpdateMessageReactions{
    Peer: &tg.Peer{},
    MsgId: 0,
    Reactions: &tg.MessageReactions{},

    // Optional fields:
    // TopMsgId: 0,
    // SavedPeerId: &tg.Peer{},
}