Layer 224
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: 42,
    Views: 42,
    Forwards: 42,
    Reactions: 42,
}