Layer 220
constructor
postInteractionCountersMessage#e7058e7f msg_id:int views:int forwards:int reactions:int = PostInteractionCounters;

Parameters

Name Type Description
MsgId int Message ID
Views int Number of views
Forwards int Number of forwards to public channels
Reactions int Number of reactions

Gogram Example

// Creating PostInteractionCountersMessage constructor
obj := &tg.PostInteractionCountersMessage{
    MsgId: 0,
    Views: 0,
    Forwards: 0,
    Reactions: 0,
}