Raw.messages.GetChatInviteImporters
Get info about the users that joined the chat using a specific chat invite
messages.getChatInviteImporters#df04dd4e flags:# requested:flags.0?true peer:InputPeer link:flags.1?string q:flags.2?string offset_date:int offset_user:InputUser limit:int = messages.ChatInviteImporters;
export namespace Raw {
export namespace messages {
export class GetChatInviteImporters {
constructor(params: {
requested?: boolean;
peer: Raw.TypeInputPeer;
link?: string;
q?: string;
offsetDate: number;
offsetUser: Raw.TypeInputUser;
limit: number;
}) {}
}
}
}
This is a function constructor, you can use it as method when call invoke
Layer: 185
Constructor ID: 0xdf04dd4e
Property
requested
: boolean or undefinedIf set, only returns info about users with pending join requests
peer
: Raw.TypeInputPeerChat
link
: string or undefinedInvite link
q
: string or undefinedSearch for a user in the pending join requests list: only available when the requested flag is set, cannot be used together with a specific link.
offsetDate
: numberOffsets for pagination, for more info click here
offsetUser
: Raw.TypeInputUserUser id for pagination: if set, offsetDate must also be set.
limit
: numberMaximum number of results to return, see pagination