Interface JSONScheduledEvent

interface JSONScheduledEvent {
    channelID: null | string;
    createdAt: number;
    creator?: JSONUser;
    description?: null | string;
    entityID: null | string;
    entityMetadata: null | ScheduledEventEntityMetadata;
    entityType: GuildScheduledEventEntityTypes;
    guildID: string;
    id: string;
    image?: null | string;
    name: string;
    privacyLevel: GUILD_ONLY;
    scheduledEndTime: null | number;
    scheduledStartTime: number;
    status: GuildScheduledEventStatuses;
    userCount?: number;
}

Hierarchy (view full)

Properties

channelID: null | string
createdAt: number
creator?: JSONUser
description?: null | string
entityID: null | string
entityMetadata: null | ScheduledEventEntityMetadata
guildID: string
id: string
image?: null | string
name: string
privacyLevel: GUILD_ONLY
scheduledEndTime: null | number
scheduledStartTime: number
userCount?: number