mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
19 lines
794 B
TypeScript
19 lines
794 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/members/request_guild_members.ts
|
|
|
|
|
|
/** https://discord.com/developers/docs/topics/gateway#request-guild-members */
|
|
export interface RequestGuildMembers {
|
|
/** id of the guild to get members for */
|
|
guildId: string;
|
|
/** String that username starts with, or an empty string to return all members */
|
|
query?: string;
|
|
/** Maximum number of members to send matching the query; a limit of 0 can be used with an empty string query to return all members */
|
|
limit: number;
|
|
/** Used to specify if we want the presences of the matched members */
|
|
presences?: boolean;
|
|
/** Used to specify which users you wish to fetch */
|
|
userIds?: bigint[];
|
|
/** Nonce to identify the Guild Members Chunk response */
|
|
nonce?: string;
|
|
}
|