function getScheduledEventUsersimport { getScheduledEventUsers } from "https://deno.land/x/discordeno@17.0.0/helpers/guilds/mod.ts"; getScheduledEventUsers(bot: Bot,guildId: BigString,eventId: BigString,options?: GetScheduledEventUsers & { withMember?: false; },): Promise<Collection<bigint, User>>Gets the list of subscribers to a scheduled event from a guild. getScheduledEventUsers(bot: Bot,guildId: BigString,eventId: BigString,options?: GetScheduledEventUsers & { withMember: true; },): Promise<Collection<bigint, { user: User; member: Member; }>>Gets the list of subscribers to a scheduled event from a guild. Parametersbot: Bot The bot instance to use to make the request. guildId: BigString The ID of the guild to get the subscribers to the scheduled event from. eventId: BigString The ID of the scheduled event to get the subscribers of. optionaloptions: GetScheduledEventUsers & { withMember?: false; } The parameters for the fetching of the subscribers. ReturnsPromise<Collection<bigint, User>>A collection of User objects assorted by user ID. Parametersbot: BotguildId: BigStringeventId: BigStringoptionaloptions: GetScheduledEventUsers & { withMember: true; }ReturnsPromise<Collection<bigint, { user: User; member: Member; }>>