interface RawScheduledEvent {
    channel_id: null | string;
    creator?: RawUser;
    creator_id?: null | string;
    description?: null | string;
    entity_id: null | string;
    entity_metadata: null | ScheduledEventEntityMetadata;
    entity_type: GuildScheduledEventEntityTypes;
    guild_id: string;
    id: string;
    image?: null | string;
    name: string;
    privacy_level: GUILD_ONLY;
    scheduled_end_time: null | string;
    scheduled_start_time: string;
    status: GuildScheduledEventStatuses;
    user_count?: number;
}

Properties

channel_id: null | string
creator?: RawUser
creator_id?: null | string
description?: null | string
entity_id: null | string
entity_metadata: null | ScheduledEventEntityMetadata
guild_id: string
id: string
image?: null | string
name: string
privacy_level: GUILD_ONLY
scheduled_end_time: null | string
scheduled_start_time: string
user_count?: number