Table of Contents

Method GetScheduledGuildEventUsersAsync

Namespace
DSharpPlus
Assembly
DSharpPlus.Rest.dll

GetScheduledGuildEventUsersAsync(ulong, ulong, int, ulong?, ulong?)

Gets the users interested in the guild event.

public Task<IReadOnlyList<DiscordUser>> GetScheduledGuildEventUsersAsync(ulong guildId, ulong eventId, int limit = 100, ulong? after = null, ulong? before = null)

Parameters

guildId ulong

The ID of the guild the event resides on.

eventId ulong

The ID of the event.

limit int

How many users to query.

after ulong?

Fetch users after this ID.

before ulong?

Fetch users before this ID.

Returns

Task<IReadOnlyList<DiscordUser>>

The users interested in the event.