Layer 224
constructor
updateChannelMessageForwards#d29a27f4 channel_id:long id:int forwards:int = Update;

Parameters

Name Type Description
ChannelId long Channel ID
Id int ID of the message
Forwards int New forward counter

Returns

Update

Gogram Example

// Creating UpdateChannelMessageForwards constructor
obj := &tg.UpdateChannelMessageForwards{
    ChannelId: int64(1234567890),
    Id: 42,
    Forwards: 42,
}