Layer 227
UpdatesCombined
Constructor for a group of updates.
constructor
updatesCombined#725b04c3 updates:Vector<Update> users:Vector<User> chats:Vector<Chat> date:int seq_start:int seq:int = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Updates | Vector < Update > | List of updates |
| Users | Vector < User > | List of users mentioned in updates |
| Chats | Vector < Chat > | List of chats mentioned in updates |
| Date | int | Current date |
| SeqStart | int | Value seq for the earliest update in a group |
| Seq | int | Value seq for the latest update in a group |
Returns
UpdatesGogram Example
// Creating UpdatesCombined constructor obj := &tg.UpdatesCombined{ Updates: &tg.VectorUpdate{}, Users: &tg.VectorUser{}, Chats: &tg.VectorChat{}, Date: 42, SeqStart: 42, Seq: 42, }