Chameleon
    Preparing search index...

    Interface GuildScheduledEvent

    interface GuildScheduledEvent {
        id: string;
        guildId: string;
        channelId: string | null;
        creatorId?: string | null;
        name: string;
        description?: string | null;
        scheduledStartTime: number;
        scheduledEndTime: number | null;
        privacyLevel: number;
        status: number;
        entityType: number;
        entityId: string | null;
        entityMetadata: GuildScheduledEventEntityMetadata | null;
        creator?: User;
        userCount?: number;
        image?: string | null;
    }
    Index

    Properties

    id: string
    guildId: string
    channelId: string | null
    creatorId?: string | null
    name: string
    description?: string | null
    scheduledStartTime: number
    scheduledEndTime: number | null
    privacyLevel: number
    status: number
    entityType: number
    entityId: string | null
    entityMetadata: GuildScheduledEventEntityMetadata | null
    creator?: User
    userCount?: number
    image?: string | null