interface GiveawayManagerCreateGiveawayOptions {
    channel: GuildTextBasedChannel;
    content?: string;
    description?: string;
    endsAt: number | Date;
    hostId?: string;
    name: string;
    riggedUsersId?: string[];
    winnerCount?: number;
}

Properties

channel: GuildTextBasedChannel
content?: string
description?: string
endsAt: number | Date
hostId?: string
name: string
riggedUsersId?: string[]
winnerCount?: number