Type Alias GuildGiveawayCreateWithoutRoleBonusesInput

GuildGiveawayCreateWithoutRoleBonusesInput: {
    buttonLabel?: string | null;
    bypassRequirementsRoles?: GuildGiveawayCreatebypassRequirementsRolesInput | string[];
    channelId: string;
    currentEntries?: GuildGiveawayEntryCreateNestedManyWithoutGuildGiveawayInput;
    dbId?: string;
    disableDoubleVoteEntry?: boolean | null;
    durationMinutes: number;
    emojiUnicodeOrId?: string | null;
    endedAt?: Date | string | null;
    entryFilter?: GuildGiveawayFilterCreateNestedOneWithoutGuildGiveawayInput;
    giveawayId: string;
    guildId: string;
    hostId?: string | null;
    liveEntryCountUpdatedAt?: Date | string | null;
    maxEntries?: number | null;
    mentionRole?: string | null;
    messageId?: string | null;
    name: string;
    requirements?: GuildGiveawayRequirementsCreateNestedOneWithoutGuildGiveawayInput;
    roleBonusType?: RoleBonusEnum | null;
    startedAt?: Date | string | null;
    winnerCount: number;
    winnerIds?: GuildGiveawayCreatewinnerIdsInput | string[];
}