Raw.UpdatesCombined
Constructor for a group of updates.
updatesCombined#725b04c3 updates:Vector<Update> users:Vector<User> chats:Vector<Chat> date:int seq_start:int seq:int = Updates;
export namespace Raw {
export class UpdatesCombined {
constructor(params: {
updates: Array<Raw.TypeUpdate>;
users: Array<Raw.TypeUser>;
chats: Array<Raw.TypeChat>;
date: number;
seqStart: number;
seq: number;
}) {}
}
}
🚫
This is a types constructor, you can’t use it as method when call invoke.
Layer: 185
Constructor ID: 0x725b04c3
Property
updates
: Array of Raw.TypeUpdateList of updates
users
: Array of Raw.TypeUserList of users mentioned in updates
chats
: Array of Raw.TypeChatList of chats mentioned in updates
date
: numberCurrent date
seqStart
: numberValue seq for the earliest update in a group
seq
: numberValue seq for the latest update in a group