swc/crates/swc_bundler/tests/.cache/deno/c515d79766d4c6d1de691f316a46c777167e195e.ts
2021-11-09 20:42:49 +09:00

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;
}