Layer 227
constructor
updateChannelReadMessagesContents#25f324f7 flags:# channel_id:long top_msg_id:flags.0?int saved_peer_id:flags.1?Peer messages:Vector<int> = Update;

Parameters

Name Type Description
ChannelId long Channel/supergroup ID
TopMsgId flags .0? int Forum topic ID.
SavedPeerId flags .1? Peer If set, the messages were read within the specified monoforum topic.
Messages Vector < int > IDs of messages that were read

Returns

Update

Gogram Example

// Creating UpdateChannelReadMessagesContents constructor
obj := &tg.UpdateChannelReadMessagesContents{
    ChannelId: int64(1234567890),
    TopMsgId: nil,
    SavedPeerId: nil,
    Messages: &tg.VectorInt{},
}