Layer 220
constructor
sendMessageEmojiInteraction#25972bcb emoticon:string msg_id:int interaction:DataJSON = SendMessageAction;

Parameters

Name Type Description
Emoticon string Emoji
MsgId int Message ID of the animated emoji that was clicked
Interaction DataJSON A JSON object with interaction info, click here for more info

Gogram Example

// Creating SendMessageEmojiInteraction constructor
obj := &tg.SendMessageEmojiInteraction{
    Emoticon: "...",
    MsgId: 0,
    Interaction: &tg.DataJson{},
}