Raw.messages.GetChatInviteImporters

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 undefined

    If set, only returns info about users with pending join requests

  • peer : Raw.TypeInputPeer

    Chat

  • link : string or undefined

    Invite link

  • q : string or undefined

    Search 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 : number

    Offsets for pagination, for more info click here

  • offsetUser : Raw.TypeInputUser

    User id for pagination: if set, offsetDate must also be set.

  • limit : number

    Maximum number of results to return, see pagination

Results

Raw.messages.TypeChatInviteImporters