class GuildScheduledEventManager

export class GuildScheduledEventManager extends CachedManager< Snowflake, GuildScheduledEvent, GuildScheduledEventResolvable>

Manages API methods for GuildScheduledEvents and stores their cache.

The cache of this manager

readonly
client : Client

The client that instantiated this Manager

guild : Guild

The guild this manager belongs to

readonly
holds : Constructable<Holds>

The data structure belonging to this manager.

Inherited from: DataManager

Creates a new guild scheduled event.

delete(
guildScheduledEvent: GuildScheduledEventResolvable
) : Promise<void>

Deletes a guild scheduled event.

edit<

AcceptableStatus extends GuildScheduledEventSetStatusArg<Status>

>(
guildScheduledEvent: GuildScheduledEventResolvable
options: GuildScheduledEventEditOptions<Status, AcceptableStatus>
) : Promise<GuildScheduledEvent<AcceptableStatus>>

Edits a guild scheduled event.

Obtains one or more guild scheduled events from Discord, or the guild cache if it's already available.

fetchSubscribers<>(
guildScheduledEvent: GuildScheduledEventResolvable
options?: Options
) : Promise<GuildScheduledEventManagerFetchSubscribersResult<Options>>

Fetches subscribers of a guild scheduled event.

resolve(
idOrInstance: Holds
) : Holds

Resolves a data entry to a data Object.

Returns: An instance from this Manager

resolveId(
idOrInstance: Key | Holds
) : Key

Resolves a data entry to an instance id.

valueOf() : Collection<Key, Holds>

Inherited from: DataManager