ChallengeCreateBodyDto: {
    body?: string;
    emoji: string;
    fileIds?: string[];
    includeAuthor?: boolean;
    reminderMinutes?: number[];
    tasks: {
        deadline: string;
        defaultTags?: string[];
        guide?: string | null;
        id?: string;
        index: number;
        startedAt: string;
        targetContentId?: string | null;
        title: string;
        type?:
            | "CHECK_TASK"
            | "CREATE_NOTE_POST"
            | "CREATE_QUESTION_POST"
            | "CREATE_POST_CHAT"
            | "COMPLETE_CONTENT";
    }[];
    title: string;
}