Interface GetCurrentGuildsOptions

interface GetCurrentGuildsOptions {
    after?: string;
    before?: string;
    limit?: number;
    withCounts?: boolean;
}

Properties

after?: string

Get guilds after this id.

before?: string

Get guilds before this id.

limit?: number

Max number of guilds to return (1-200).

withCounts?: boolean

Whether to include approximate member and presence counts.